mozilla-foundation/common_voice_17_0
Updated • 6.15k • 18
How to use augustinjianu/whisper-tiny-ro with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="augustinjianu/whisper-tiny-ro") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("augustinjianu/whisper-tiny-ro")
model = AutoModelForSpeechSeq2Seq.from_pretrained("augustinjianu/whisper-tiny-ro")This model is a fine-tuned version of openai/whisper-tiny 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.4417 | 1.7730 | 1000 | 0.5327 | 43.8513 |
| 0.1813 | 3.5461 | 2000 | 0.4666 | 38.8689 |
| 0.0751 | 5.3191 | 3000 | 0.4645 | 36.5006 |
| 0.0326 | 7.0922 | 4000 | 0.4803 | 36.4614 |
| 0.0234 | 8.8652 | 5000 | 0.5087 | 36.5148 |
| 0.0082 | 10.6383 | 6000 | 0.5424 | 36.6252 |
| 0.0042 | 12.4113 | 7000 | 0.5650 | 37.6509 |
| 0.0029 | 14.1844 | 8000 | 0.5809 | 36.8710 |
| 0.0025 | 15.9574 | 9000 | 0.5922 | 38.1495 |
| 0.0021 | 17.7305 | 10000 | 0.5978 | 37.4835 |
Base model
openai/whisper-tiny