mozilla-foundation/common_voice_17_0
Updated • 5.4k • 17
How to use akhooli/whisper-small-dar with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="akhooli/whisper-small-dar") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("akhooli/whisper-small-dar")
model = AutoModelForSpeechSeq2Seq.from_pretrained("akhooli/whisper-small-dar")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.303 | 0.5935 | 200 | 0.2434 | 0.4226 |
| 0.2 | 1.1869 | 400 | 0.2035 | 0.3914 |
| 0.1633 | 1.7804 | 600 | 0.1876 | 0.3469 |
| 0.106 | 2.3739 | 800 | 0.1850 | 0.3488 |
| 0.1005 | 2.9674 | 1000 | 0.1813 | 0.3367 |
Base model
openai/whisper-small