mozilla-foundation/common_voice_17_0
Updated • 5.57k • 25
How to use anatal/whisper-small-pt with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="anatal/whisper-small-pt") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("anatal/whisper-small-pt")
model = AutoModelForSpeechSeq2Seq.from_pretrained("anatal/whisper-small-pt")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.1452 | 1.4556 | 1000 | 0.2624 | 17.9483 |
| 0.0733 | 2.9112 | 2000 | 0.2660 | 17.1344 |
| 0.0118 | 4.3668 | 3000 | 0.3177 | 17.2583 |
| 0.0066 | 5.8224 | 4000 | 0.3521 | 17.1586 |
Base model
openai/whisper-small