mozilla-foundation/common_voice_13_0
Updated • 2.46k • 4
How to use Zakryah/whisper-tiny-hu with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="Zakryah/whisper-tiny-hu") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("Zakryah/whisper-tiny-hu")
model = AutoModelForSpeechSeq2Seq.from_pretrained("Zakryah/whisper-tiny-hu")This model is a fine-tuned version of openai/whisper-tiny on the Common Voice 13.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.7211 | 0.6895 | 1000 | 0.7369 | 59.2806 |
| 0.5253 | 1.3786 | 2000 | 0.6201 | 53.7320 |
| 0.4235 | 2.0676 | 3000 | 0.5741 | 50.7056 |
| 0.4075 | 2.7571 | 4000 | 0.5618 | 49.5177 |
Base model
openai/whisper-tiny