mozilla-foundation/common_voice_13_0
Updated • 1.74k • 5
How to use OmarKhattab/whisper-arabic with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="OmarKhattab/whisper-arabic") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("OmarKhattab/whisper-arabic")
model = AutoModelForSpeechSeq2Seq.from_pretrained("OmarKhattab/whisper-arabic")This model is a fine-tuned version of openai/whisper-small on the Common Voice 13.0 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.2829 | 0.4148 | 1000 | 0.3279 | 44.4093 |
| 0.1824 | 0.8295 | 2000 | 0.2965 | 44.4240 |
| 0.1039 | 1.2443 | 3000 | 0.2791 | 39.7591 |
| 0.0965 | 1.6591 | 4000 | 0.2682 | 38.5566 |
Base model
openai/whisper-small