google/fleurs
Viewer • Updated • 768k • 57.7k • 402
How to use Sagicc/whisper-large-v3-sr-combined with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="Sagicc/whisper-large-v3-sr-combined") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("Sagicc/whisper-large-v3-sr-combined")
model = AutoModelForSpeechSeq2Seq.from_pretrained("Sagicc/whisper-large-v3-sr-combined")Use an updated fine tunned version Sagicc/whisper-large-v3-sr-cmb with new 50+ hours of dataset.
This model is a fine-tuned version of openai/whisper-large-v3 on Serbian Mozilla/Common Voice 13 and Google/Fleurs datasets. It achieves the following results on the evaluation set:
The following hyperparameters were used during training:
| Training Loss | Epoch | Step | Validation Loss | Wer Ortho | Wer |
|---|---|---|---|---|---|
| 0.0567 | 1.34 | 500 | 0.1512 | 0.1676 | 0.0717 |
| 0.0256 | 2.67 | 1000 | 0.1482 | 0.1585 | 0.0610 |
| 0.0114 | 4.01 | 1500 | 0.1628 | 0.1635 | 0.0556 |