mozilla-foundation/common_voice_13_0
Updated • 2.36k • 3
How to use BanUrsus/whisper-small-dv with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="BanUrsus/whisper-small-dv") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("BanUrsus/whisper-small-dv")
model = AutoModelForSpeechSeq2Seq.from_pretrained("BanUrsus/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.1219 | 1.63 | 500 | 0.1725 | 63.1729 | 13.4698 |
| 0.0472 | 3.26 | 1000 | 0.1644 | 58.0820 | 11.8076 |
| 0.0288 | 4.89 | 1500 | 0.1815 | 58.2283 | 11.3294 |
| 0.0067 | 6.53 | 2000 | 0.2322 | 59.0919 | 11.2946 |
| 0.0018 | 8.16 | 2500 | 0.2608 | 57.5179 | 11.0217 |
| 0.001 | 9.79 | 3000 | 0.2815 | 57.1558 | 10.8895 |
| 0.0002 | 11.42 | 3500 | 0.2943 | 56.8633 | 10.8634 |
| 0.0002 | 13.05 | 4000 | 0.2999 | 56.6961 | 10.8095 |
Base model
openai/whisper-small