BSC-LT / whisper-bsc-large-v3-cat

huggingface.co
Total runs: 117
24-hour runs: 4
7-day runs: 11
30-day runs: -103
Model's Last Updated: October 28 2025
automatic-speech-recognition

Introduction of whisper-bsc-large-v3-cat

Model Details of whisper-bsc-large-v3-cat

Whisper_bsc_large_v3_cat

Table of Contents
Click to expand
Model Description

The "langtech-veu/whisper-bsc-large-v3-cat" is an acoustic model suitable for Automatic Speech Recognition in Catalan. It is the result of finetuning the model "openai/whisper-large-v3" with 4700 hours of Catalan data released by the Projecte AINA from Barcelona, Spain.

Intended Uses and Limitations

This model can be used for Automatic Speech Recognition (ASR) in Catalan. The model intends to transcribe Catalan audio files to plain text without punctuation.

Installation

To use this model, you may install datasets and transformers :

Create a virtual environment:

python -m venv /path/to/venv

Activate the environment:

source /path/to/venv/bin/activate

Install the modules:

pip install datasets transformers 
For Inference

To transcribe audio in Catalan using this model, you can follow this example:

#Install Prerequisites
pip install torch
pip install datasets
pip install 'transformers[torch]'
pip install evaluate
pip install jiwer
#This code works with GPU

#Notice that: load_metric is no longer part of datasets.
#You have to remove it and use evaluate's load instead.
#(Note from November 2024)

import torch
from transformers import WhisperForConditionalGeneration, WhisperProcessor

#Load the processor and model.
MODEL_NAME="langtech-veu/whisper-bsc-large-v3-cat"
processor = WhisperProcessor.from_pretrained(MODEL_NAME)
model = WhisperForConditionalGeneration.from_pretrained(MODEL_NAME).to("cuda")

#Load the dataset
from datasets import load_dataset, load_metric, Audio
ds=load_dataset("projecte-aina/parlament_parla",split='test')

#Downsample to 16 kHz
ds = ds.cast_column("audio", Audio(sampling_rate=16_000))

#Process the dataset
def map_to_pred(batch):
    audio = batch["audio"]
    input_features = processor(audio["array"], sampling_rate=audio["sampling_rate"], return_tensors="pt").input_features
    batch["reference"] = processor.tokenizer._normalize(batch['normalized_text'])

    with torch.no_grad():
        predicted_ids = model.generate(input_features.to("cuda"))[0]
    
    transcription = processor.decode(predicted_ids)
    batch["prediction"] = processor.tokenizer._normalize(transcription)
    
    return batch
    
#Do the evaluation
result = ds.map(map_to_pred)

#Compute the overall WER now.
from evaluate import load

wer = load("wer")
WER=100 * wer.compute(references=result["reference"], predictions=result["prediction"])
print(WER)
Training Details
Training data

The specific datasets used to create the model are:

Training procedure

This model is the result of finetuning the model "openai/whisper-large-v3" by following this tutorial provided by Language Technologies Laboratory . (Soon to be published)

Training Hyperparameters
  • language: Catalan
  • hours of training audio: 4700
  • learning rate: 1e-04
  • sample rate: 16000
  • train batch size: 16 (x4 GPUs)
  • eval batch size: 16
  • num_train_epochs: 10
  • weight_decay: 1e-4
Citation

If this model contributes to your research, please cite the work:

@misc{takanori2025whisperbsclarge3cat,
      title={Acoustic Model in Catalan: Whisper_bsc_large_v3_cat.}, 
      author={Sanchez Shiromizu, Lucas Takanori; Hernandez Mena, Carlos Daniel; Messaoudi, Abir; España i Bonet, Cristina; Cortada Garcia, Marti},
      organization={Barcelona Supercomputing Center},
      url={https://huggingface.co/langtech-veu/whisper-bsc-large-v3-cat},
      year={2025}
}
Additional Information
Author

The fine-tuning process was performed during Spring (2025) in the Language Technologies Laboratory of the Barcelona Supercomputing Center by Lucas Takanori Sanchez Shiromizu .

Contact

For further information, please send an email to [email protected] .

Copyright

Copyright(c) 2025 by Language Technologies Laboratory, Barcelona Supercomputing Center.

License

Apache-2.0

Funding

This work is funded by the Ministerio para la Transformación Digital y de la Función Pública - Funded by EU – NextGenerationEU within the framework of the project ILENIA with reference 2022/TL22/00215337.

The training of the model was possible thanks to the computing time provided by Barcelona Supercomputing Center through MareNostrum 5.

Runs of BSC-LT whisper-bsc-large-v3-cat on huggingface.co

117
Total runs
4
24-hour runs
8
3-day runs
11
7-day runs
-103
30-day runs

More Information About whisper-bsc-large-v3-cat huggingface.co Model

More whisper-bsc-large-v3-cat license Visit here:

https://choosealicense.com/licenses/apache-2.0

whisper-bsc-large-v3-cat huggingface.co

whisper-bsc-large-v3-cat huggingface.co is an AI model on huggingface.co that provides whisper-bsc-large-v3-cat's model effect (), which can be used instantly with this BSC-LT whisper-bsc-large-v3-cat model. huggingface.co supports a free trial of the whisper-bsc-large-v3-cat model, and also provides paid use of the whisper-bsc-large-v3-cat. Support call whisper-bsc-large-v3-cat model through api, including Node.js, Python, http.

whisper-bsc-large-v3-cat huggingface.co Url

https://huggingface.co/BSC-LT/whisper-bsc-large-v3-cat

BSC-LT whisper-bsc-large-v3-cat online free

whisper-bsc-large-v3-cat huggingface.co is an online trial and call api platform, which integrates whisper-bsc-large-v3-cat's modeling effects, including api services, and provides a free online trial of whisper-bsc-large-v3-cat, you can try whisper-bsc-large-v3-cat online for free by clicking the link below.

BSC-LT whisper-bsc-large-v3-cat online free url in huggingface.co:

https://huggingface.co/BSC-LT/whisper-bsc-large-v3-cat

whisper-bsc-large-v3-cat install

whisper-bsc-large-v3-cat is an open source model from GitHub that offers a free installation service, and any user can find whisper-bsc-large-v3-cat on GitHub to install. At the same time, huggingface.co provides the effect of whisper-bsc-large-v3-cat install, users can directly use whisper-bsc-large-v3-cat installed effect in huggingface.co for debugging and trial. It also supports api for free installation.

whisper-bsc-large-v3-cat install url in huggingface.co:

https://huggingface.co/BSC-LT/whisper-bsc-large-v3-cat

Url of whisper-bsc-large-v3-cat

whisper-bsc-large-v3-cat huggingface.co Url

Provider of whisper-bsc-large-v3-cat huggingface.co

BSC-LT
ORGANIZATIONS

Other API from BSC-LT

huggingface.co

Total runs: 3.5K
Run Growth: 2.9K
Growth Rate: 81.45%
Updated:April 10 2026
huggingface.co

Total runs: 1.9K
Run Growth: -610
Growth Rate: -25.91%
Updated:October 22 2025
huggingface.co

Total runs: 1.1K
Run Growth: 1.0K
Growth Rate: 96.05%
Updated:April 10 2026
huggingface.co

Total runs: 928
Run Growth: -287
Growth Rate: -26.23%
Updated:October 22 2025
huggingface.co

Total runs: 646
Run Growth: 205
Growth Rate: 33.44%
Updated:October 22 2025
huggingface.co

Total runs: 593
Run Growth: 222
Growth Rate: 37.56%
Updated:April 10 2026
huggingface.co

Total runs: 318
Run Growth: 39
Growth Rate: 14.29%
Updated:March 27 2026
huggingface.co

Total runs: 312
Run Growth: 291
Growth Rate: 88.45%
Updated:October 26 2021
huggingface.co

Total runs: 229
Run Growth: -58
Growth Rate: -26.48%
Updated:August 07 2025
huggingface.co

Total runs: 171
Run Growth: 84
Growth Rate: 49.70%
Updated:April 10 2026
huggingface.co

Total runs: 119
Run Growth: 16
Growth Rate: 13.45%
Updated:September 06 2021
huggingface.co

Total runs: 104
Run Growth: 82
Growth Rate: 81.19%
Updated:October 29 2024
huggingface.co

Total runs: 77
Run Growth: -44
Growth Rate: -57.14%
Updated:April 22 2026
huggingface.co

Total runs: 13
Run Growth: 8
Growth Rate: 61.54%
Updated:September 10 2024