Views
No views yet
openai/whisper-small fine-tuned for Maltese (mt) automatic speech recognition
on Mozilla Common Voice Scripted Speech 26.0, trained on a laptop
(Apple M3 Pro, PyTorch MPS backend, fp32).| Model | Raw WER | Normalized WER | Test clips |
|---|---|---|---|
| whisper-base fine-tuned | 105.7% | 94.1% | 300 |
| whisper-base zero-shot | 107.6% | 134.7% | 300 |
| whisper-small fine-tuned | 46.7% | 38.9% | 300 |
| whisper-small zero-shot | 110.1% | 100.6% | 300 |
BasicTextNormalizer (lowercase, strip punctuation) to both
reference and hypothesis.mozilla-foundation/common_voice_* datasets on this
Hub are empty shells).Seq2SeqTrainer recipe
(fine-tune-whisper):
batch 4 × grad-accum 4, lr 1e-05, warmup 50,
1000 steps, fp32 (MPS), gradient checkpointing, greedy decoding,
best-checkpoint-by-WER selection.1from transformers import pipeline
2asr = pipeline("automatic-speech-recognition", model="titaniumbones/whisper-small-mt-commonvoice")
3print(asr("clip.mp3", generate_kwargs={"language": "maltese"}))