mozilla-foundation/common_voice_17_0
Updated • 5.61k • 15
How to use Curiousfox/whisper_new_ver4 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="Curiousfox/whisper_new_ver4") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("Curiousfox/whisper_new_ver4")
model = AutoModelForSpeechSeq2Seq.from_pretrained("Curiousfox/whisper_new_ver4")This model is a fine-tuned version of openai/whisper-medium on the Common Voice 16.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.3834 | 0.256 | 800 | 0.5102 | 83.2549 |
| 0.4023 | 0.512 | 1600 | 0.4974 | 82.0220 |
| 0.4024 | 0.768 | 2400 | 0.4877 | 83.6808 |
| 0.3819 | 1.024 | 3200 | 0.4820 | 80.9460 |
| 0.3125 | 1.28 | 4000 | 0.4772 | 79.4889 |
| 0.315 | 1.536 | 4800 | 0.4762 | 82.0220 |
| 0.3057 | 1.792 | 5600 | 0.4707 | 80.2062 |
| 0.3093 | 2.048 | 6400 | 0.4695 | 82.0444 |
| 0.2507 | 2.304 | 7200 | 0.4716 | 83.4342 |
| 0.2476 | 2.56 | 8000 | 0.4709 | 84.1740 |