This is a fine-tuned version of
openai/whisper-large-v3 for
Ugandan English non-standard speech. It is part of CDLI's effort to make speech technology work for people whose speech is underserved by mainstream ASR systems.
All CDLI models and datasets can be found on
CDLI's HuggingFace page.
Dataset
The model has been fine-tuned using
cdli/ugandan_english_nonstandard_speech_v1.0, a dataset of speech samples of people living with impaired speech across a range of impairment
severity levels and
etiologies.
Training
The train split was used for training, and the dev split for selecting the best checkpoint.
All model parameters (encoder, decoder, and output projection) were fine-tuned, with SpecAugment enabled.
Evaluation
This model was evaluated on the test split of the dataset. Utterances longer than 30 seconds were excluded:
- Examples evaluated: 1013
- Speakers: 9
For decoding we ran Whisper with language=en, task=transcribe,
greedy search (num_beams=1, do_sample=False).
Results are compared against the unadapted base model
openai/whisper-large-v3, evaluated identically, to show the effect of fine-tuning on non-standard speech.
We report two complementary word error rate (WER) metrics, both computed on text
normalized with Whisper's BasicTextNormalizer:
- Standard (corpus-level) WER — the usual error rate, pooling all reference
words and edit errors across the entire test set.
- Per-utterance averaged WER — WER computed separately for each utterance,
each capped at 1.0, then averaged across utterances.
The per-utterance averaged WER bounds each utterance to
[0, 1] and weights all utterances equally, so it reflects typical performance
without a few catastrophic utterances dominating — but it is not a true error
rate and isn't directly comparable to other published WER, hence we report the standard, corpus-level WER as well.
Results
Overall Results
- Adapted — this CDLI model, fine-tuned on non-standard speech.
- Unadapted — the base model it was fine-tuned from (here:
openai/whisper-large-v3).
| Model | Standard WER | Per-utterance averaged WER |
|---|
| Adapted | 0.24 | 0.22 |
| Unadapted | 0.34 | 0.29 |
| Relative improvement | 31% | 24% |
Detailed Analysis
Aggregated results can hide important underlying patterns, so we also break the WER down by subset: per speaker, and — where speaker severity is available — per impairment severity group.
Results by impairment severity
All WER values below are the per-utterance averaged WER, first averaged per
speaker and then averaged within each severity group. n_speakers and
n_utterances are the number of speakers and test utterances in each group.
| severity | n_speakers | n_utterances | Avg WER (unadapted model) | Avg WER (adapted model) | Rel. improvement |
|---|
| mild | 3 | 334 | 0.24 | 0.2 | 16% |
| moderate | 3 | 340 | 0.3 | 0.21 | 30% |
| severe | 3 | 339 | 0.32 | 0.25 | 21% |
Results by speaker
Per-utterance averaged WER per speaker. n_utterances is the number of test utterances for that speaker.
| speaker_id | severity | etiology | n_utterances | Avg WER (unadapted model) | Avg WER (adapted model) | Rel. improvement |
|---|
| UG001 | mild | Cerebral palsy - cerebral malaria | 102 | 0.24 | 0.25 | -1% |
| UG014 | mild | Idiopathic | 133 | 0.16 | 0.12 | 23% |
| UG022 | mild | Developmental | 99 | 0.33 | 0.25 | 26% |
| UG021 | moderate | Structural presence of akloglosia, simply tongue tie | 77 | 0.19 | 0.15 | 20% |
| UG036 | moderate | Cerebral Palsy | 151 | 0.35 | 0.2 | 42% |
| UG052 | moderate | Developmental | 112 | 0.36 | 0.28 | 23% |
| UG042 | severe | Developmental | 92 | 0.23 | 0.22 | 4% |
| UG057 | severe | Acquired hearing impairment | 96 | 0.39 | 0.29 | 26% |
| UG058 | severe | Developmental | 151 | 0.33 | 0.25 | 25% |