mozilla-foundation/common_voice_13_0
Updated • 2.5k • 4
How to use irvingM/whisper-id-finetuned with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="irvingM/whisper-id-finetuned") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("irvingM/whisper-id-finetuned")
model = AutoModelForSpeechSeq2Seq.from_pretrained("irvingM/whisper-id-finetuned")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.3546 | 0.7911 | 250 | 0.3433 | 23.8195 | 18.6421 |
| 0.1621 | 1.5823 | 500 | 0.3325 | 23.2594 | 18.9171 |
| 0.058 | 2.3734 | 750 | 0.3483 | 23.1274 | 18.0966 |
| 0.0265 | 3.1646 | 1000 | 0.3528 | 22.8496 | 18.4708 |
Base model
openai/whisper-small