mozilla-foundation/common_voice_13_0
Updated • 1.72k • 5
How to use zuazo/whisper-base-pt with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="zuazo/whisper-base-pt") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("zuazo/whisper-base-pt")
model = AutoModelForSpeechSeq2Seq.from_pretrained("zuazo/whisper-base-pt")This model is a fine-tuned version of openai/whisper-base 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.3261 | 7.04 | 1000 | 0.4097 | 20.6766 |
| 0.2632 | 14.08 | 2000 | 0.3884 | 19.5101 |
| 0.2241 | 21.13 | 3000 | 0.3827 | 19.4690 |
| 0.2048 | 28.17 | 4000 | 0.3815 | 19.2899 |
| 0.1956 | 35.21 | 5000 | 0.3815 | 19.4033 |