CoolFace
Modelpublic

HiTZ/whisper-large-v3-es

sourceHugging Faceapache-2.0updated 10mo agoView on Hugging Face
0likes32downloads
Model Card

Whisper Large-V3 Spanish

Model summary

Whisper Large-V3 Spanish is a cutting-edge automatic speech recognition (ASR) model for Spanish (es), fine-tuned from [openai/whisper-large-v3] on the Spanish subset of Mozilla Common Voice 13.0. It achieves a Word Error Rate (WER) of 4.9295% on the evaluation set, making it one of the most accurate Whisper models for Spanish.

This model incorporates improvements from the Large-V3 architecture, including better noise robustness, enhanced multilingual pretraining, and mixed precision training for efficiency.


Model description

  • —Architecture: Transformer-based encoder–decoder (Whisper Large-V3)
  • —Base model: openai/whisper-large-v3
  • —Language: Spanish (es)
  • —Task: Automatic Speech Recognition (ASR)
  • —Output: Text transcription in Spanish
  • —Decoding: Autoregressive sequence-to-sequence decoding

Large-V3 builds upon Large-V2, offering lower WER and improved generalization across accents and audio conditions.


Intended use

Primary use cases

  • —High-accuracy transcription of Spanish audio
  • —Podcasts, interviews, lectures, and long-form audio
  • —Research or commercial applications requiring top-tier ASR performance in Spanish

Limitations

  • —Performance may drop on heavily accented or extremely noisy audio
  • —High memory and compute requirements, particularly for real-time use
  • —Not suitable for critical domains (medical, legal) without human verification

Training and evaluation data

  • —Dataset: Mozilla Common Voice 13.0 (Spanish subset)
  • —Data type: Crowd-sourced read speech
  • —Preprocessing:
  • —Audio resampled to 16 kHz
  • —Text tokenized using Whisper tokenizer
  • —Filtering of corrupted or invalid samples
  • —Evaluation metric: Word Error Rate (WER) on held-out evaluation set

Evaluation results

MetricValue
WER (eval)4.9295%

Training procedure

Training hyperparameters

  • —Learning rate: 1e-5
  • —Optimizer: Adam (β1=0.9, β2=0.999, ε=1e-8)
  • —LR scheduler: Linear
  • —Warmup steps: 500
  • —Training steps: 20000
  • —Train batch size: 32 (gradient accumulation 2 → effective batch size 64)
  • —Eval batch size: 16
  • —Seed: 42
  • —Mixed precision training: Native AMP

Training results (summary)

Training LossEpochStepValidation LossWer
0.0582.0410000.15404.6851
0.01244.0720000.18294.6787
0.00526.1130000.21904.8096
0.00248.1540000.22894.8776
0.002410.1850000.23414.8923
0.001512.2260000.24594.9340
0.002114.2670000.25584.9276
0.001116.2980000.25405.1015
0.001318.3390000.26115.1855
0.000520.37100000.27204.9379
0.002822.4110000.26145.0110
0.000424.44120000.26524.9898
0.000426.48130000.28504.9776
0.000628.51140000.27364.9732
0.000230.55150000.29445.1566
0.000232.59160000.29495.0007
0.000134.62170000.30944.9552
0.036.66180000.31854.9622
0.038.7190000.32294.9462
0.040.73200000.32454.9295

Framework versions

  • —Transformers 4.37.2
  • —PyTorch 2.2.0+cu121
  • —Datasets 2.16.1
  • —Tokenizers 0.15.1

Example usage

python
from transformers import pipeline

hf_model = "HiTZ/whisper-large-v3-es"  # replace with actual repo ID
device = 0  # -1 for CPU

pipe = pipeline(
    task="automatic-speech-recognition",
    model=hf_model,
    device=device
)

result = pipe("audio.wav")
print(result["text"])

Ethical considerations and risks

  • —This model transcribes speech and may process personal data.
  • —Users should ensure compliance with applicable data protection laws (e.g., GDPR).
  • —The model should not be used for surveillance or non-consensual audio processing.

Citation

If you use this model in your research, please cite:

bibtex
@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.


License

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.


Contact and attribution

  • —Fine-tuning and evaluation: HiTZ/Aholab - Basque Center for Language Technology
  • —Base model: OpenAI Whisper
  • —Dataset: Mozilla Common Voice

For questions or issues, please open an issue in the model repository.