mozilla-foundation/common_voice_17_0
Updated • 5.16k • 33
How to use leliw/whisper-tiny-pl with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="leliw/whisper-tiny-pl") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("leliw/whisper-tiny-pl")
model = AutoModelForSpeechSeq2Seq.from_pretrained("leliw/whisper-tiny-pl", device_map="auto")This model is a fine-tuned version of openai/whisper-tiny on the Common Voice 17 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 Ortho | Wer |
|---|---|---|---|---|---|
| 0.5684 | 0.7716 | 500 | 0.7197 | 103.1812 | 76.3039 |
| 0.4006 | 1.5432 | 1000 | 0.6714 | 79.3973 | 64.9667 |
| 0.2894 | 2.3148 | 1500 | 0.6739 | 78.6396 | 65.9231 |
| 0.2095 | 3.0864 | 2000 | 0.6714 | 75.9211 | 66.7013 |
Base model
openai/whisper-tiny