mozilla-foundation/common_voice_13_0
Updated • 2.38k • 3
How to use Padajno/whisper-small-sl with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="Padajno/whisper-small-sl") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("Padajno/whisper-small-sl")
model = AutoModelForSpeechSeq2Seq.from_pretrained("Padajno/whisper-small-sl")This model is a fine-tuned version of openai/whisper-small on the Common Voice 13 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.9497 | 0.6135 | 100 | 0.8683 | 37.6703 | 35.8745 |
| 0.171 | 1.2270 | 200 | 0.3742 | 33.4847 | 31.2039 |
| 0.1841 | 1.8405 | 300 | 0.3407 | 31.0585 | 28.7337 |
| 0.0592 | 2.4540 | 400 | 0.3492 | 29.5545 | 27.1153 |
| 0.0434 | 3.0675 | 500 | 0.3624 | 29.7106 | 27.2572 |
| 0.027 | 3.6810 | 600 | 0.3707 | 28.2066 | 25.9370 |
Base model
openai/whisper-small