Views
No views yet
automatic-speech-recognition: https://huggingface.co/docs/transformers.js/api/pipelines#module_pipelines.AutomaticSpeechRecognitionPipelineopenai/whisper-large-v3-turbo trained specifically on high-quality Persian speech data from the vhdm/persian-voice-v1 dataset.| Metric | Value |
|---|---|
| Final Validation Loss | 0.1445 |
| Word Error Rate (WER) | 14.07% |
vhdm/persian-voice-v1 dataset, a curated collection of Persian speech recordings with high-quality transcriptions.betas=(0.9, 0.999), eps=1e-08)| Step | Training Loss | Validation Loss | WER (%) |
|---|---|---|---|
| 1000 | 0.2190 | 0.2093 | 22.07 |
| 2000 | 0.1191 | 0.1698 | 17.85 |
| 3000 | 0.1051 | 0.1485 | 15.79 |
| 4000 | 0.0644 | 0.1530 | 16.03 |
| 5000 | 0.0289 | 0.1445 | 14.07 |
transformers: 4.52.4torch: 2.7.1+cu118datasets: 3.6.0tokenizers: 0.21.11from 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"])