Whisper
Collection
Whisper model fine-tuned on different languages • 10 items • Updated
How to use ALM/whisper-lv-small-augmented with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="ALM/whisper-lv-small-augmented") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("ALM/whisper-lv-small-augmented")
model = AutoModelForSpeechSeq2Seq.from_pretrained("ALM/whisper-lv-small-augmented")This model is a fine-tuned version of openai/whisper-small on the mozilla-foundation/common_voice_11_0 lv 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.0219 | 16.67 | 1000 | 0.6129 | 41.1575 |
| 0.0029 | 33.33 | 2000 | 0.5975 | 36.1480 |
| 0.0003 | 50.0 | 3000 | 0.5626 | 33.6812 |
| 0.0004 | 66.67 | 4000 | 0.5608 | 33.2827 |
| 0.0001 | 83.33 | 5000 | 0.5715 | 33.8046 |