Views
No views yet
openai/whisper-large-v3 with decoder self-attention converted MHA→MLA
(Whisper-MLA, arXiv:2603.00563) and recovery-fine-tuned on the
CC0 Whispered corpus — the same
model that annotated that corpus, now with a 62.5% smaller decode KV-cache. Conversion cost vs
an identically-trained unconverted control: not statistically significant on 9 of 11 languages
(significant only on ar +0.56 WER and zh +0.52 CER; median ≈ +0.1). n=1500/lang, paired per-speaker bootstrap.1from transformers import AutoModelForSpeechSeq2Seq
2model = AutoModelForSpeechSeq2Seq.from_pretrained("burakaydinofficial/whisper-large-v3-mla-cv11", trust_remote_code=True) # transformers==4.46.x| Lang | WER/CER % | conversion cost |
|---|---|---|
| en | 6.6 / 3.2 | +0.20 ns |
| de | 5.3 / 1.9 | +0.09 ns |
| es | 4.2 / 1.4 | +0.02 ns |
| fr | 9.6 / 3.6 | +0.08 ns |
| ru | 4.2 / 1.1 | −0.03 ns |
| tr | 8.4 / 1.9 | −0.08 ns |
| cy | 35.8 / 12.0 | +0.67 ns |
| ar | 16.6 / 6.0 | +0.56 ✱ |
| th | 14.0 / 4.4 | −0.02 CER ns |
| zh | 18.3 / 9.7 | +0.52 CER ✱ |
| ka | 72.3 / 34.3 | +0.22 ns — floor |
burakaydinofficial/whisper-large-v3-cv11 (trained identically, minus the MHA→MLA conversion). Evaluate both with scripts/validate.py.trust_remote_code=True and transformers==4.46.x (custom MLA attention modules); not loadable in whisper.cpp / faster-whisper / CTranslate2.