Views
No views yet
| Metric | Value |
|---|---|
| WER (eval) | 8.2668% |
| Training Loss | Epoch | Step | Validation Loss | WER |
|---|---|---|---|---|
| 0.1320 | 2.0 | 1000 | 0.2461 | 9.5267 |
| 0.1288 | 4.01 | 2000 | 0.2251 | 8.5215 |
| 0.0814 | 6.01 | 3000 | 0.2212 | 8.2668 |
| 0.0905 | 8.01 | 4000 | 0.2310 | 8.4997 |
| 0.0319 | 10.02 | 5000 | 0.2358 | 8.5343 |
1from transformers import pipeline
2
3hf_model = "HiTZ/whisper-small-es" # replace with actual repo ID
4device = 0 # -1 for CPU
5
6pipe = pipeline(
7 task="automatic-speech-recognition",
8 model=hf_model,
9 device=device
10)
11
12result = pipe("audio.wav")
13print(result["text"])1@misc{dezuazo2025whisperlmimprovingasrmodels,
2 title={Whisper-LM: Improving ASR Models with Language Models for Low-Resource Languages},
3 author={Xabier de Zuazo and Eva Navas and Ibon Saratxaga and Inma Hernáez Rioja},
4 year={2025},
5 eprint={2503.23542},
6 archivePrefix={arXiv},
7 primaryClass={cs.CL}
8}