mozilla-foundation/common_voice_13_0
Updated • 1.39k • 6
How to use raiyan007/whisper-tiny-6e-5 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="raiyan007/whisper-tiny-6e-5") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("raiyan007/whisper-tiny-6e-5")
model = AutoModelForSpeechSeq2Seq.from_pretrained("raiyan007/whisper-tiny-6e-5", device_map="auto")This model is a fine-tuned version of openai/whisper-tiny 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.261 | 1.0661 | 500 | 0.2417 | 63.3469 |
| 0.1926 | 2.1322 | 1000 | 0.1941 | 54.3987 |
| 0.1367 | 3.1983 | 1500 | 0.1729 | 49.3116 |
| 0.0994 | 4.2644 | 2000 | 0.1622 | 46.2280 |
| 0.0564 | 5.3305 | 2500 | 0.1669 | 45.0802 |
| 0.0394 | 6.3966 | 3000 | 0.1734 | 44.3491 |
Base model
openai/whisper-tiny