mozilla-foundation/common_voice_17_0
Updated • 5.52k • 15
How to use TopSlayer/whisper-small-lo with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="TopSlayer/whisper-small-lo") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("TopSlayer/whisper-small-lo")
model = AutoModelForSpeechSeq2Seq.from_pretrained("TopSlayer/whisper-small-lo")This model is a fine-tuned version of openai/whisper-small on the Common Voice 17.0 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 |
|---|---|---|---|---|
| 0.0071 | 20.8333 | 1000 | 0.3643 | 43.8356 |
| 0.0013 | 41.6667 | 2000 | 0.3832 | 36.9863 |
| 0.0 | 62.5 | 3000 | 0.4228 | 27.3973 |
| 0.0 | 83.3333 | 4000 | 0.4416 | 27.3973 |
| 0.0 | 104.1667 | 5000 | 0.4486 | 27.3973 |
Base model
openai/whisper-small