CoolFace
Modelpublic

BuzzASR/polish

sourceHugging Facemitupdated 5d agoView on Hugging Face
1likes62downloads
README.md70 linesDownload Raw Back to root
1---2language: pl3license: mit4library_name: transformers5pipeline_tag: automatic-speech-recognition6base_model: openai/whisper-large-v37tags: [automatic-speech-recognition, whisper, polish, buzzasr]8datasets: [google/fleurs]9metrics: [cer, wer]10---11 12# BuzzASR — Polish13 14A monolingual automatic speech recognition model for **Polish**, fine-tuned from15[openai/whisper-large-v3](https://huggingface.co/openai/whisper-large-v3). Part of **BuzzASR**,16a suite of 102 language-specialized ASR models17([paper: arXiv:2609.09554](https://arxiv.org/abs/2609.09554), Findings of EMNLP 2026).18 19This model uses **full fine-tuning (native per-language tokenizer replacement + text multitask fine-tuning)**.20 21## Results (normalized CER / WER, %)22 23| Test set | CER | WER | Whisper-large-v3 (zero-shot) CER |24|---|---|---|---|25| FLEURS | 9.98 | 30.46 | 1.81 |26| Common Voice 25 | 5.48 | 16.63 | 3.26 |27| Combined | 7.75 | 23.31 | 2.84 |28 29~0.4x CER reduction over Whisper zero-shot on the combined test set.30 31## Usage32 33```python34import torch, torchaudio35from transformers import WhisperForConditionalGeneration, WhisperProcessor36 37model = WhisperForConditionalGeneration.from_pretrained("BuzzASR/polish", torch_dtype=torch.float16).to("cuda").eval()38proc  = WhisperProcessor.from_pretrained("BuzzASR/polish")39 40wav, sr = torchaudio.load("audio.wav")           # 16 kHz mono41feats = proc(wav[0], sampling_rate=16000, return_tensors="pt").input_features.to("cuda").half()42ids = model.generate(feats, num_beams=1, no_repeat_ngram_size=3, repetition_penalty=1.2)43print(proc.batch_decode(ids, skip_special_tokens=True)[0])44```45The language/task prompt is baked into the generation config, so no `language=` argument is needed.46 47## Training data48[FLEURS](https://huggingface.co/datasets/google/fleurs) + **Common Voice Corpus 25.0** (Mozilla, March 2025; https://commonvoice.mozilla.org/en/datasets), capped per the paper. Text-only data from the **Goldfish** corpus (Chang et al., 2026).49 50## Limitations51Monolingual (Polish only). Evaluated on FLEURS / Common Voice test splits; other domains or dialects may differ.52 53## Links & citation54- **Paper:** https://arxiv.org/abs/2609.09554 (Findings of EMNLP 2026)55- **Project page:** https://lemn-lab.github.io/buzz-asr/56- **All models:** https://huggingface.co/BuzzASR57 58```bibtex59@misc{buzzasr2026,60  title         = {BuzzASR: A Swarm of 100+ Monolingual Speech Recognition Models},61  author        = {Shivam Singh and Aditya Yadavalli and Catherine Arnett and Alex Warstadt},62  year          = {2026},63  eprint        = {2609.09554},64  archivePrefix = {arXiv},65  primaryClass  = {cs.CL},66  note          = {Findings of the Association for Computational Linguistics: EMNLP 2026},67  url           = {https://arxiv.org/abs/2609.09554}68}69```70