google/fleurs
Viewer • Updated • 768k • 64.5k • 406
How to use Sagicc/whisper-large-v2-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-v2-sr-combined") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("Sagicc/whisper-large-v2-sr-combined")
model = AutoModelForSpeechSeq2Seq.from_pretrained("Sagicc/whisper-large-v2-sr-combined")This model is a fine-tuned version of openai/whisper-large-v2 on the combined Google Fleurs and Mozilla Foundation 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.0737 | 1.34 | 500 | 0.1735 | 0.1865 | 0.0908 |
| 0.0304 | 2.67 | 1000 | 0.1622 | 0.1670 | 0.0728 |
| 0.0156 | 4.01 | 1500 | 0.1749 | 0.1678 | 0.0623 |
Base model
openai/whisper-large-v2