whitefox123/tashkeel
Viewer • Updated • 10.3k • 173 • 2
How to use whitefox123/whisper-large-ar5 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="whitefox123/whisper-large-ar5") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("whitefox123/whisper-large-ar5")
model = AutoModelForSpeechSeq2Seq.from_pretrained("whitefox123/whisper-large-ar5")This model is a fine-tuned version of openai/whisper-large-v3 on the CLARtts 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.0864 | 1.6 | 1000 | 0.1155 | 165.5135 |
| 0.0291 | 3.2 | 2000 | 0.1192 | 268.0360 |
| 0.0196 | 4.8 | 3000 | 0.1317 | 217.9820 |
| 0.0024 | 6.4 | 4000 | 0.1583 | 136.1802 |
| 0.0012 | 8.0 | 5000 | 0.1708 | 136.3604 |
| 0.0004 | 9.6 | 6000 | 0.1841 | 128.7207 |
| 0.0009 | 11.2 | 7000 | 0.1831 | 169.8739 |
| 0.0003 | 12.8 | 8000 | 0.1885 | 158.7387 |
| 0.0001 | 14.4 | 9000 | 0.1992 | 156.8649 |
Base model
openai/whisper-large-v3