mozilla-foundation/common_voice_13_0
Updated • 2.5k • 4
How to use jensg/whisper-small-dv with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="jensg/whisper-small-dv") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("jensg/whisper-small-dv")
model = AutoModelForSpeechSeq2Seq.from_pretrained("jensg/whisper-small-dv")This model is a fine-tuned version of openai/whisper-small on the Common Voice 13 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 Ortho | Wer |
|---|---|---|---|---|---|
| 0.1119 | 1.63 | 500 | 0.1645 | 60.8817 | 12.9082 |
| 0.0457 | 3.26 | 1000 | 0.1677 | 59.3286 | 11.7450 |
| 0.0317 | 4.89 | 1500 | 0.1903 | 58.3258 | 11.3798 |
| 0.012 | 6.51 | 2000 | 0.2292 | 58.0403 | 11.7085 |
| 0.007 | 8.14 | 2500 | 0.2595 | 56.9538 | 11.0982 |
| 0.0061 | 9.77 | 3000 | 0.2606 | 56.6404 | 10.8878 |
| 0.0052 | 11.4 | 3500 | 0.2737 | 56.8911 | 11.1799 |
| 0.0033 | 13.03 | 4000 | 0.3085 | 58.3606 | 11.6320 |
Base model
openai/whisper-small