mozilla-foundation/common_voice_17_0
Updated • 5.9k • 21
How to use shimonbh/stt-small with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="shimonbh/stt-small") # Load model directly
from transformers import AutoProcessor, AutoModelForMultimodalLM
processor = AutoProcessor.from_pretrained("shimonbh/stt-small")
model = AutoModelForMultimodalLM.from_pretrained("shimonbh/stt-small")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.1591 | 5.1948 | 400 | 0.6390 | 74.0479 |
| 0.0164 | 10.3896 | 800 | 0.7373 | 74.3199 |
| 0.0078 | 15.5844 | 1200 | 0.8321 | 73.3950 |
| 0.0028 | 20.7792 | 1600 | 0.8744 | 74.2111 |
| 0.0012 | 25.9740 | 2000 | 0.9024 | 71.8172 |
| 0.0003 | 31.1688 | 2400 | 0.9137 | 72.0348 |
| 0.0002 | 36.3636 | 2800 | 0.9279 | 71.8172 |
| 0.0002 | 41.5584 | 3200 | 0.9391 | 71.8172 |
| 0.0002 | 46.7532 | 3600 | 0.9457 | 71.8172 |
| 0.0002 | 51.9481 | 4000 | 0.9486 | 71.8172 |
Base model
openai/whisper-small