mozilla-foundation/common_voice_13_0
Updated • 1.62k • 5
How to use zuazo/whisper-small-pt with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="zuazo/whisper-small-pt") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("zuazo/whisper-small-pt")
model = AutoModelForSpeechSeq2Seq.from_pretrained("zuazo/whisper-small-pt")This model is a fine-tuned version of openai/whisper-small on the mozilla-foundation/common_voice_13_0 pt 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.1957 | 3.52 | 1000 | 0.2442 | 10.5938 |
| 0.1297 | 7.04 | 2000 | 0.2378 | 10.2849 |
| 0.0998 | 10.56 | 3000 | 0.2428 | 10.2520 |
| 0.0742 | 14.08 | 4000 | 0.2489 | 10.4015 |
| 0.0738 | 17.61 | 5000 | 0.2528 | 10.4147 |