Downloads · 30 days
13
15% of all-time downloads
HiTZ/whisper-medium-ca
whisper-medium-ca is a machine learning model from HiTZ. Use it for the machine learning task on the model card, and read the license before you ship it in a product. The card lists the license as apache-2.0.
Whisper Medium Catalan is an automatic speech recognition (ASR) model for Catalan (ca) speech. It is fine-tuned from [openai/whisper-medium] on the Catalan subset of Mozilla Common Voice 13.0, achieving a Word Error R…
Downloads · 30 days
13
15% of all-time downloads
All-time downloads
85
Public
Repo size
30.6 GB
Likes
0
Public
Click a slice to open those files.
.bin3.1 GB · 100%
From the Hugging Face model README
Whisper Medium Catalan is an automatic speech recognition (ASR) model for Catalan (ca) speech. It is fine-tuned from [openai/whisper-medium] on the Catalan subset of Mozilla Common Voice 13.0, achieving a Word Error Rate (WER) of 5.995% on the evaluation split.
This model balances transcription accuracy and speed, offering higher performance than small variants while remaining computationally efficient.
Fine-tuned to improve transcription quality on Catalan audio.
Dataset: Mozilla Common Voice 13.0 (Catalan subset)
Data type: Crowd-sourced, read speech
Preprocessing:
Evaluation metric: Word Error Rate (WER) on held-out evaluation set
| Metric | Value |
|---|---|
| WER (eval) | 5.995% |
| Training Loss | Epoch | Step | Validation Loss | WER |
|---|---|---|---|---|
| 0.1158 | 1.05 | 1000 | 0.1846 | 8.3630 |
| 0.0184 | 3.05 | 2000 | 0.2017 | 8.0629 |
| 0.0522 | 5.04 | 3000 | 0.1940 | 8.1177 |
| 0.0595 | 7.04 | 4000 | 0.1742 | 7.4696 |
| 0.0179 | 9.04 | 5000 | 0.1899 | 7.3095 |
| 0.0646 | 11.04 | 6000 | 0.1555 | 6.3441 |
| 0.0825 | 13.03 | 7000 | 0.1810 | 6.4841 |
| 0.0309 | 15.03 | 8000 | 0.1464 | 6.3544 |
| 0.0695 | 17.03 | 9000 | 0.1434 | 5.9954 |
| 0.0186 | 19.03 | 10000 | 0.1706 | 6.1097 |
from transformers import pipeline
hf_model = "HiTZ/whisper-medium-ca" # replace with actual repo ID
device = 0 # set to -1 for CPU
pipe = pipeline(
task="automatic-speech-recognition",
model=hf_model,
device=device
)
result = pipe("audio.wav")
print(result["text"])
If you use this model in your research, please cite:
@misc{dezuazo2025whisperlmimprovingasrmodels,
title={Whisper-LM: Improving ASR Models with Language Models for Low-Resource Languages},
author={Xabier de Zuazo and Eva Navas and Ibon Saratxaga and Inma Hernáez Rioja},
year={2025},
eprint={2503.23542},
archivePrefix={arXiv},
primaryClass={cs.CL}
}
Please, check the related paper preprint in arXiv:2503.23542 for more details.
This model is available under the Apache-2.0 License. You are free to use, modify, and distribute this model as long as you credit the original creators.
For questions or issues, please open an issue in the model repository.