facebook/multilingual_librispeech
Viewer • Updated • 1.49M • 51k • 180
How to use sgangireddy/whisper-largev2-mls-fr with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="sgangireddy/whisper-largev2-mls-fr") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("sgangireddy/whisper-largev2-mls-fr")
model = AutoModelForSpeechSeq2Seq.from_pretrained("sgangireddy/whisper-largev2-mls-fr")This model is a fine-tuned version of openai/whisper-large-v2 on the facebook/multilingual_librispeech french dataset. It achieves the following results on the evaluation set:
The model is fine-tuned for 4000 updates/steps on multilingual librispeech French train data.
More information needed
More information needed
The following hyperparameters were used during training:
| Training Loss | Epoch | Step | Validation Loss | Wer |
|---|---|---|---|---|
| 0.1303 | 0.25 | 1000 | 0.1219 | 6.3618 |
| 0.0751 | 0.5 | 2000 | 0.1033 | 5.3905 |
| 0.0613 | 0.75 | 3000 | 0.0970 | 4.9193 |
| 0.0796 | 1.0 | 4000 | 0.0903 | 4.5616 |