google/fleurs
Viewer • Updated • 768k • 57.1k • 405
How to use Sagicc/whisper-medium-sr-v3 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="Sagicc/whisper-medium-sr-v3") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("Sagicc/whisper-medium-sr-v3")
model = AutoModelForSpeechSeq2Seq.from_pretrained("Sagicc/whisper-medium-sr-v3")This model is a fine-tuned version of openai/whisper-medium 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.2054 | 0.03 | 500 | 0.2392 | 0.2715 | 0.1484 |
| 0.1782 | 0.05 | 1000 | 0.2056 | 0.2411 | 0.1155 |
| 0.1736 | 0.08 | 1500 | 0.1768 | 0.1990 | 0.0994 |
| 0.1662 | 0.11 | 2000 | 0.1677 | 0.1925 | 0.0940 |
| 0.1409 | 0.13 | 2500 | 0.1589 | 0.1891 | 0.0860 |
| 0.1346 | 0.16 | 3000 | 0.1565 | 0.1897 | 0.0881 |
| 0.1263 | 0.19 | 3500 | 0.1523 | 0.1805 | 0.0819 |
| 0.137 | 0.22 | 4000 | 0.1501 | 0.1759 | 0.0791 |
Base model
openai/whisper-medium