mozilla-foundation/common_voice_17_0
Updated • 6k • 17
How to use anggiatm/whisper-small-id with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="anggiatm/whisper-small-id") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("anggiatm/whisper-small-id")
model = AutoModelForSpeechSeq2Seq.from_pretrained("anggiatm/whisper-small-id")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.2099 | 0.6002 | 1000 | 0.1998 | 14.0573 |
| 0.0732 | 1.2005 | 2000 | 0.1336 | 9.9572 |
| 0.0507 | 1.8007 | 3000 | 0.1034 | 7.5678 |
| 0.0197 | 2.4010 | 4000 | 0.0931 | 6.5965 |