Views
No views yet
| Metric | Value |
|---|---|
| WER (eval) | 13.5312% |
| Training Loss | Epoch | Step | Validation Loss | WER |
|---|---|---|---|---|
| 0.2173 | 4.0 | 1000 | 0.3409 | 14.8123 |
| 0.0955 | 8.01 | 2000 | 0.3377 | 15.4269 |
| 0.1647 | 12.01 | 3000 | 0.3393 | 14.5602 |
| 0.0986 | 16.01 | 4000 | 0.3281 | 13.5312 |
| 0.1272 | 20.02 | 5000 | 0.3423 | 13.7596 |
1from transformers import pipeline
2
3hf_model = "HiTZ/whisper-base-es" # 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}