mozilla-foundation/common_voice_17_0
Updated • 5.41k • 17
How to use 6x16/whisper-medium-yue-continuous with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="6x16/whisper-medium-yue-continuous") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("6x16/whisper-medium-yue-continuous")
model = AutoModelForSpeechSeq2Seq.from_pretrained("6x16/whisper-medium-yue-continuous")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 | Cer |
|---|---|---|---|---|
| 0.0187 | 5.5556 | 1000 | 0.2198 | 9.1962 |
| 0.0006 | 11.1111 | 2000 | 0.2458 | 8.8610 |
| 0.0001 | 16.6667 | 3000 | 0.2670 | 8.4587 |
| 0.0001 | 22.2222 | 4000 | 0.2757 | 8.3544 |
| 0.0001 | 27.7778 | 5000 | 0.2796 | 8.3321 |
Base model
openai/whisper-medium