theelvace
whisper-small-igbo
Run this model inference on single tenant GPU with unmatched speed and reliability at scale.
Run this model inference with full control and performance in your environment.
Get help setting up a custom Dedicated Endpoints.
Talk with our engineer to get a quote for reserved GPU instances with discounts.
README
License: mitResults
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
- FLEURS Igbo (
ig_ngconfig) — 2,839 training examples - Nigerian Common Voice Dataset (Igbo subset) — 4,571 training examples
Usage
python
from transformers import WhisperProcessor, WhisperForConditionalGenerationfrom peft import PeftModelimport torchprocessor = 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 aboveforced_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 detailsSupported Functionality
Model APIs
Dedicated Endpoints
Container
More information