mozilla-foundation/common_voice_13_0
Updated • 1.25k • 6
How to use AlinaKozyreva/whisper-small-ru with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="AlinaKozyreva/whisper-small-ru") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("AlinaKozyreva/whisper-small-ru")
model = AutoModelForSpeechSeq2Seq.from_pretrained("AlinaKozyreva/whisper-small-ru", device_map="auto")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.2085 | 0.22 | 500 | 0.2366 | 19.9234 | 14.9498 |
| 0.1875 | 0.44 | 1000 | 0.2176 | 19.3079 | 14.5643 |
| 0.1688 | 0.66 | 1500 | 0.2095 | 18.3736 | 13.9287 |
| 0.1678 | 0.88 | 2000 | 0.2038 | 17.7325 | 13.4381 |
| 0.0853 | 1.1 | 2500 | 0.2036 | 17.0309 | 12.7488 |
| 0.0822 | 1.32 | 3000 | 0.2046 | 17.6894 | 13.2780 |
| 0.0775 | 1.54 | 3500 | 0.2051 | 16.9948 | 12.7126 |
| 0.0727 | 1.76 | 4000 | 0.2080 | 17.4462 | 13.3014 |
Base model
openai/whisper-small