whitefox123/tashkeel
Viewer • Updated • 10.3k • 172 • 2
How to use whitefox123/whisper-large-ar6 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="whitefox123/whisper-large-ar6") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("whitefox123/whisper-large-ar6")
model = AutoModelForSpeechSeq2Seq.from_pretrained("whitefox123/whisper-large-ar6")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.0843 | 1.6 | 1000 | 0.1141 | 248.9730 |
| 0.024 | 3.2 | 2000 | 0.1194 | 274.9189 |
| 0.0108 | 4.8 | 3000 | 0.1346 | 217.9099 |
Base model
openai/whisper-large-v3