mozilla-foundation/common_voice_17_0
Updated • 5.24k • 17
How to use ihanif/whisper-small-tunning-v1 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="ihanif/whisper-small-tunning-v1") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("ihanif/whisper-small-tunning-v1")
model = AutoModelForSpeechSeq2Seq.from_pretrained("ihanif/whisper-small-tunning-v1")This model is a fine-tuned version of openai/whisper-small 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 Ortho | Wer |
|---|---|---|---|---|---|
| 0.6754 | 0.9346 | 100 | 0.6689 | 62.1021 | 58.4888 |
| 0.4477 | 1.8692 | 200 | 0.6215 | 57.3134 | 53.5101 |
| 0.2243 | 2.8037 | 300 | 0.6222 | 55.8883 | 52.0928 |
| 0.0949 | 3.7383 | 400 | 0.6822 | 54.6007 | 49.6989 |
| 0.0448 | 4.6729 | 500 | 0.7240 | 53.5301 | 49.4346 |
| 0.0201 | 5.6075 | 600 | 0.7355 | 52.7344 | 48.9646 |
| 0.0124 | 6.5421 | 700 | 0.7615 | 52.3944 | 48.6929 |
| 0.0035 | 7.4766 | 800 | 0.7868 | 51.0778 | 47.2243 |
| 0.002 | 8.4112 | 900 | 0.8025 | 51.6276 | 47.6869 |
| 0.0011 | 9.3458 | 1000 | 0.8094 | 51.6855 | 47.9806 |
Base model
openai/whisper-small