mozilla-foundation/common_voice_17_0
Updated • 5.23k • 31
How to use choozmo/whisper-small-hi with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="choozmo/whisper-small-hi") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("choozmo/whisper-small-hi")
model = AutoModelForSpeechSeq2Seq.from_pretrained("choozmo/whisper-small-hi")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.0877 | 2.2472 | 1000 | 0.2976 | 46.5219 |
| 0.0194 | 4.4944 | 2000 | 0.3421 | 45.4518 |
| 0.0051 | 6.7416 | 3000 | 0.3962 | 41.9813 |
| 0.0006 | 8.9888 | 4000 | 0.4196 | 41.7558 |
Base model
openai/whisper-small