mozilla-foundation/common_voice_13_0
Updated • 1.48k • 6
How to use sanchit-gandhi/whisper-medium-dv with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="sanchit-gandhi/whisper-medium-dv") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("sanchit-gandhi/whisper-medium-dv")
model = AutoModelForSpeechSeq2Seq.from_pretrained("sanchit-gandhi/whisper-medium-dv", device_map="auto")This model is a fine-tuned version of openai/whisper-medium on the mozilla-foundation/common_voice_13_0 dv dataset. It achieves the following results on the evaluation set:
To reproduce this run, execute the command in run.sh. Note that you will require the DeepSpeed package, which can be pip installed with:
pip install --upgrade deepspeed
More information needed
More information needed
More information needed
The following hyperparameters were used during training:
| Training Loss | Epoch | Step | Validation Loss | Wer |
|---|---|---|---|---|
| 0.0349 | 3.58 | 1000 | 0.1622 | 9.9437 |
| 0.0046 | 7.17 | 2000 | 0.2288 | 9.5090 |
| 0.0007 | 10.75 | 3000 | 0.2820 | 9.0952 |
| 0.0 | 14.34 | 4000 | 0.2998 | 8.9578 |