mozilla-foundation/common_voice_17_0
Updated • 5.91k • 19
How to use madhabpaul/asr-whisper-small-as with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="madhabpaul/asr-whisper-small-as") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("madhabpaul/asr-whisper-small-as")
model = AutoModelForSpeechSeq2Seq.from_pretrained("madhabpaul/asr-whisper-small-as")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.2471 | 2.7027 | 200 | 0.3792 | 74.9368 |
| 0.0533 | 5.4054 | 400 | 0.3930 | 68.5275 |
| 0.0128 | 8.1081 | 600 | 0.4844 | 67.5396 |
| 0.0022 | 10.8108 | 800 | 0.5584 | 67.0342 |
| 0.0006 | 13.5135 | 1000 | 0.5698 | 66.7815 |
Base model
openai/whisper-small