mozilla-foundation/common_voice_17_0
Updated • 5.41k • 17
How to use 6x16/whisper-small-yue-quicktrain with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="6x16/whisper-small-yue-quicktrain") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("6x16/whisper-small-yue-quicktrain")
model = AutoModelForSpeechSeq2Seq.from_pretrained("6x16/whisper-small-yue-quicktrain")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 | Cer |
|---|---|---|---|---|
| 0.0646 | 2.7778 | 1000 | 0.2421 | 14.9583 |
| 0.008 | 5.5556 | 2000 | 0.2735 | 18.6681 |
| 0.0007 | 8.3333 | 3000 | 0.3033 | 15.4648 |
| 0.0005 | 11.1111 | 4000 | 0.3101 | 12.7086 |
Base model
openai/whisper-small