Downloads · 30 days
25
29% of all-time downloads
HiTZ/whisper-base-ca
whisper-base-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 Base Catalan is an automatic speech recognition (ASR) model for Catalan (ca) speech. It is fine-tuned from [openai/whisper-base] on the Catalan subset of Mozilla Common Voice 13.0, achieving a Word Error Rate…
Downloads · 30 days
25
29% of all-time downloads
All-time downloads
85
Public
Repo size
1.5 GB
Likes
0
Public
Click a slice to open those files.
.bin290 MB · 99%
From the Hugging Face model README
Whisper Base Catalan is an automatic speech recognition (ASR) model for Catalan (ca) speech. It is fine-tuned from [openai/whisper-base] on the Catalan subset of Mozilla Common Voice 13.0, achieving a Word Error Rate (WER) of 13.79% on the evaluation split.
This model is intended for higher-quality Catalan transcription compared to the tiny variant.
Fine-tuned to improve transcription accuracy on Catalan audio using Whisper’s pretrained multilingual knowledge.
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) | 13.79% |
| Training Loss | Epoch | Step | Validation Loss | WER |
|---|---|---|---|---|
| 0.0975 | 3.05 | 1000 | 0.3560 | 19.4421 |
| 0.1381 | 7.04 | 2000 | 0.3066 | 16.1486 |
| 0.1302 | 11.04 | 3000 | 0.2902 | 15.4296 |
| 0.1089 | 15.03 | 4000 | 0.2699 | 14.0726 |
| 0.0505 | 19.03 | 5000 | 0.2782 | 13.7897 |
from transformers import pipeline
hf_model = "HiTZ/whisper-base-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.