This model is a fine-tuned version of
openai/whisper-large-v3-turbo trained specifically on high-quality Persian speech data from the
vhdm/persian-voice-v1 dataset.
The model shows consistent improvement over training and reaches a solid WER of ~14% on clean Persian speech data.
The model was trained on the
vhdm/persian-voice-v1 dataset, a curated collection of Persian speech recordings with high-quality transcriptions.
1from transformers import pipeline
2
3pipe = pipeline("automatic-speech-recognition", model="vhdm/whisper-large-fa-v1")
4result = pipe("path_to_persian_audio.wav")
5print(result["text"])
6