mozilla-foundation/common_voice_13_0
Updated • 2.45k • 4
How to use Apocalypse-19/whisper-large-odiya with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="Apocalypse-19/whisper-large-odiya") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("Apocalypse-19/whisper-large-odiya")
model = AutoModelForSpeechSeq2Seq.from_pretrained("Apocalypse-19/whisper-large-odiya")This model is a fine-tuned version of openai/whisper-large-v2 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.0019 | 9.71 | 500 | 0.2362 | 45.4898 | 19.3002 |
| 0.0001 | 19.42 | 1000 | 0.2808 | 45.8771 | 18.4527 |
Base model
openai/whisper-large-v2