mozilla-foundation/common_voice_13_0
Updated • 1.71k • 5
How to use iPr0x/whisper-small-hi with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="iPr0x/whisper-small-hi") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("iPr0x/whisper-small-hi")
model = AutoModelForSpeechSeq2Seq.from_pretrained("iPr0x/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.0823 | 2.36 | 1000 | 0.2898 | 34.5522 |
| 0.0214 | 4.73 | 2000 | 0.3268 | 33.1567 |
| 0.0027 | 7.09 | 3000 | 0.3842 | 32.4196 |
| 0.0005 | 9.46 | 4000 | 0.4138 | 32.2746 |
Base model
openai/whisper-small