mozilla-foundation/common_voice_13_0
Updated • 2.47k • 3
How to use lsatish/whisper-small-hi with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="lsatish/whisper-small-hi") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("lsatish/whisper-small-hi")
model = AutoModelForSpeechSeq2Seq.from_pretrained("lsatish/whisper-small-hi")This model is a fine-tuned version of openai/whisper-small on the Common Voice 13.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.0824 | 2.36 | 1000 | 0.2878 | 34.6474 |
| 0.0214 | 4.73 | 2000 | 0.3354 | 33.0407 |
| 0.0013 | 7.09 | 3000 | 0.3846 | 32.0883 |
| 0.0006 | 9.46 | 4000 | 0.4093 | 31.8357 |