BuzzASR โ€” Uzbek

A monolingual automatic speech recognition model for Uzbek, fine-tuned from openai/whisper-large-v3. Part of BuzzASR, a suite of 102 language-specialized ASR models (Findings of EMNLP 2026).

This model uses simple fine-tuning (Whisper's tokenizer, ASR fine-tuning only).

๐Ÿ† State-of-the-art (open-source). On the combined FLEURS + Common Voice test set, this model achieves the lowest CER of every open system we compare against: Whisper-large-v3, Omnilingual 1B/7B, MMS, Qwen3-ASR, and Cohere Transcribe.

Results (normalized CER / WER, %)

Test set CER WER Whisper-large-v3 (zero-shot) CER
FLEURS 6.6 25.64 28.4
Common Voice 25 2.68 11.84 28.55
Combined 3.86 16.0 28.45

~7.4x CER reduction over Whisper zero-shot on the combined test set.

Usage

import torch, torchaudio
from transformers import WhisperForConditionalGeneration, WhisperProcessor

model = WhisperForConditionalGeneration.from_pretrained("BuzzASR/uzbek", torch_dtype=torch.float16).to("cuda").eval()
proc  = WhisperProcessor.from_pretrained("BuzzASR/uzbek")

wav, sr = torchaudio.load("audio.wav")           # 16 kHz mono
feats = proc(wav[0], sampling_rate=16000, return_tensors="pt").input_features.to("cuda").half()
ids = model.generate(feats, num_beams=1, no_repeat_ngram_size=3, repetition_penalty=1.2)
print(proc.batch_decode(ids, skip_special_tokens=True)[0])

The language/task prompt is baked into the generation config, so no language= argument is needed.

Training data

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).

Limitations

Monolingual (Uzbek only). Evaluated on FLEURS / Common Voice test splits; other domains or dialects may differ.

Citation

Project page: https://lemn-lab.github.io/buzzasr-docs/

Downloads last month
-
Safetensors
Model size
2B params
Tensor type
F16
ยท
Inference Providers NEW
This model isn't deployed by any Inference Provider. ๐Ÿ™‹ Ask for provider support

Model tree for BuzzASR/uzbek

Finetuned
(1050)
this model

Dataset used to train BuzzASR/uzbek