mozilla-foundation/common_voice_13_0
Updated • 1.68k • 5
How to use Gwenn-LR/wisper-small-dv with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="Gwenn-LR/wisper-small-dv") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("Gwenn-LR/wisper-small-dv")
model = AutoModelForSpeechSeq2Seq.from_pretrained("Gwenn-LR/wisper-small-dv")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.4025 | 3.2468 | 500 | 0.4676 | 91.6854 | 34.1667 |
| 0.2307 | 6.4935 | 1000 | 0.2723 | 77.0787 | 20.2222 |
| 0.1558 | 9.7403 | 1500 | 0.2503 | 76.1798 | 18.1111 |
| 0.1822 | 12.9870 | 2000 | 0.2260 | 70.7865 | 17.7222 |
Base model
openai/whisper-small