mozilla-foundation/common_voice_13_0
Updated • 2.3k • 3
How to use Lingua-Connect/whisper-small-sw-normal with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="Lingua-Connect/whisper-small-sw-normal") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("Lingua-Connect/whisper-small-sw-normal")
model = AutoModelForSpeechSeq2Seq.from_pretrained("Lingua-Connect/whisper-small-sw-normal")This model is a fine-tuned version of openai/whisper-small on the Common Voice 13 dataset. It achieves the following results on the evaluation set:
More information needed
More information needed
More information needed
The following hyperparameters were used during training:
| Training Loss | Epoch | Step | Validation Loss | Wer Ortho | Wer |
|---|---|---|---|---|---|
| 0.1028 | 1.1220 | 500 | 0.1930 | 18.2956 | 18.2829 |
| 0.0067 | 3.116 | 1000 | 0.0871 | 7.6330 | 7.6218 |
| 0.0026 | 5.11 | 1500 | 0.0715 | 6.2008 | 6.2040 |
| 0.0007 | 7.104 | 2000 | 0.0724 | 5.5083 | 5.5068 |
Base model
openai/whisper-small