theelvace

whisper-small-igbo

Dedicated Endpoints

Run this model inference on single tenant GPU with unmatched speed and reliability at scale.

Learn more
Container

Run this model inference with full control and performance in your environment.

Learn more

Get help setting up a custom Dedicated Endpoints.

Talk with our engineer to get a quote for reserved GPU instances with discounts.

README

License: mit

Results

62.45% WER on the FLEURS Igbo test set (969 samples), down from a 68.95% baseline — verified on the full test set, not estimated from training metrics.

Training data

Usage

python

from transformers import WhisperProcessor, WhisperForConditionalGeneration
from peft import PeftModel
import torch
processor = WhisperProcessor.from_pretrained("openai/whisper-small")
base_model = WhisperForConditionalGeneration.from_pretrained("openai/whisper-small")
model = PeftModel.from_pretrained(base_model, "theelvace/whisper-small-igbo")
model = model.merge_and_unload()
# Igbo language token proxy — see note above
forced_decoder_ids = [[1, 50325], [2, 50359], [3, 50363]]
inputs = processor.feature_extractor(audio_array, sampling_rate=16000, return_tensors="pt")
generated_ids = model.generate(inputs.input_features, forced_decoder_ids=forced_decoder_ids)
transcription = processor.tokenizer.decode(generated_ids[0], skip_special_tokens=True)

On-device deployment

This repo also hosts ONNX exports (encoder, cross-attention initializer, KV-cache decoder) used to run this model fully on-device on Android — no cloud inference. See the Olu Igbo GitHub repo for the full mobile app, export scripts, and benchmarks on a Snapdragon 678 device.

Limitations

  • 62.45% WER reflects real, measured performance, not a polished demo number — short, clear utterances transcribe more reliably than long or complex ones.
  • Performance on live microphone audio in real-world noise conditions will generally be lower than the FLEURS test set figure, which is measured on clean studio recordings.

License

MIT

Model provider

theelvace

Model tree

Base

openai/whisper-small

Adapter

this model

Modalities

Input

Audio

Output

Text

Pricing

Dedicated Endpoints

View details

Supported Functionality

Model APIs

Dedicated Endpoints

Container

More information

Explore FriendliAI today