mozilla-foundation/common_voice_17_0
Updated • 4.69k • 26
How to use jacccc/whisper-small-yo with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="jacccc/whisper-small-yo") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("jacccc/whisper-small-yo")
model = AutoModelForSpeechSeq2Seq.from_pretrained("jacccc/whisper-small-yo")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 |
|---|---|---|---|---|
| 0.0669 | 7.6923 | 1000 | 0.8999 | 71.5755 |
| 0.0038 | 15.3846 | 2000 | 1.1113 | 71.0612 |
| 0.0004 | 23.0769 | 3000 | 1.1985 | 70.6897 |
| 0.0003 | 30.7692 | 4000 | 1.2260 | 70.6516 |
Base model
openai/whisper-small