mozilla-foundation/common_voice_17_0
Updated • 5.58k • 25
How to use akhooli/whisper-small-ar2 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="akhooli/whisper-small-ar2") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("akhooli/whisper-small-ar2")
model = AutoModelForSpeechSeq2Seq.from_pretrained("akhooli/whisper-small-ar2")This model is a fine-tuned version of openai/whisper-small on the mozilla-foundation/common_voice_17_0 ar 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 |
|---|---|---|---|---|
| 0.3226 | 20.8333 | 250 | 1.0813 | 0.7584 |
| 0.0021 | 41.6667 | 500 | 1.2796 | 0.7637 |
Base model
openai/whisper-small