Views
No views yet
| Metric | Value |
|---|---|
| WER (eval) | 10.03% |
| Training Loss | Epoch | Step | Validation Loss | WER |
|---|---|---|---|---|
| 0.1708 | 1.1 | 1000 | 0.2494 | 12.1846 |
| 0.0421 | 3.09 | 2000 | 0.2458 | 11.2689 |
| 0.0761 | 5.09 | 3000 | 0.2340 | 10.9231 |
| 0.0928 | 7.08 | 4000 | 0.2150 | 10.0394 |
| 0.0504 | 9.08 | 5000 | 0.2169 | 10.0252 |
1from transformers import pipeline
2
3hf_model = "HiTZ/whisper-small-ca" # replace with actual repo ID
4device = 0 # set to -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}