mozilla-foundation/common_voice_13_0
Updated • 2.42k • 3
How to use ehzawad/whisper-tiny-bn with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="ehzawad/whisper-tiny-bn") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("ehzawad/whisper-tiny-bn")
model = AutoModelForSpeechSeq2Seq.from_pretrained("ehzawad/whisper-tiny-bn")This model is a fine-tuned version of openai/whisper-tiny on the Common Voice 13.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.3593 | 0.53 | 1000 | 0.3717 | 102.7311 |
| 0.2502 | 1.07 | 2000 | 0.2802 | 81.0367 |
| 0.2219 | 1.6 | 3000 | 0.2535 | 80.8361 |
| 0.2069 | 2.14 | 4000 | 0.2422 | 75.4095 |