mozilla-foundation/common_voice_17_0
Updated • 4.79k • 29
How to use xbilek25/whisper-medium-en-cv-3.2 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="xbilek25/whisper-medium-en-cv-3.2") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("xbilek25/whisper-medium-en-cv-3.2")
model = AutoModelForSpeechSeq2Seq.from_pretrained("xbilek25/whisper-medium-en-cv-3.2")This model is a fine-tuned version of openai/whisper-medium 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.2886 | 0.2 | 72 | 0.3367 | 12.7185 |
| 0.2389 | 0.4 | 144 | 0.3239 | 13.3699 |
| 0.2347 | 0.6 | 216 | 0.3175 | 12.2043 |
| 0.0804 | 1.175 | 288 | 0.3175 | 12.8900 |
| 0.0845 | 1.375 | 360 | 0.3208 | 12.7871 |
Base model
openai/whisper-medium