mozilla-foundation/common_voice_13_0
Updated • 1.67k • 5
How to use LeonM78Code/whisper-small-dv with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="LeonM78Code/whisper-small-dv") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("LeonM78Code/whisper-small-dv")
model = AutoModelForSpeechSeq2Seq.from_pretrained("LeonM78Code/whisper-small-dv")# Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("LeonM78Code/whisper-small-dv")
model = AutoModelForSpeechSeq2Seq.from_pretrained("LeonM78Code/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.0162 | 6.4935 | 500 | 0.2193 | 57.3020 | 11.4285 |
| 0.0027 | 12.9870 | 1000 | 0.2799 | 55.4287 | 10.4983 |
| 0.0013 | 19.4805 | 1500 | 0.3227 | 55.2824 | 10.5105 |
| 0.0007 | 25.9740 | 2000 | 0.3129 | 54.6069 | 10.4149 |
| 0.0 | 32.4675 | 2500 | 0.3903 | 53.6249 | 9.9680 |
| 0.0 | 38.9610 | 3000 | 0.4478 | 53.6945 | 9.9332 |
| 0.0 | 45.4545 | 3500 | 0.4796 | 53.6458 | 9.9524 |
| 0.0 | 51.9481 | 4000 | 0.4909 | 53.6249 | 9.9384 |
Base model
openai/whisper-small
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="LeonM78Code/whisper-small-dv")