mozilla-foundation/common_voice_17_0
Updated • 5.23k • 31
How to use mustafoyev202/whisper-uz with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="mustafoyev202/whisper-uz") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("mustafoyev202/whisper-uz")
model = AutoModelForSpeechSeq2Seq.from_pretrained("mustafoyev202/whisper-uz")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.6553 | 0.5330 | 250 | 0.5830 | 51.2637 |
| 0.3945 | 1.0661 | 500 | 0.4612 | 41.6914 |
| 0.3352 | 1.5991 | 750 | 0.4360 | 42.0931 |
| 0.2028 | 2.1322 | 1000 | 0.4155 | 38.1133 |
| 0.1956 | 2.6652 | 1250 | 0.4081 | 37.6900 |
| 0.1202 | 3.1983 | 1500 | 0.4148 | 38.1999 |
Base model
openai/whisper-medium