Suggestion for a new model
Great work on the models and the benchmarks. Here is an idea you could try if you want.
The new GigaAM Multilingual foundation model (with 240M and 600M variants) claims to beat Whisper Large v3 and Omnilingual 1B on target languages under a controlled CTC fine-tuning setup. The kicker is that their 240M encoder outperforms the 1B+ baselines on average WER while being substantially smaller and faster for inference. Also, Japanese was heavily included in their Global Core pre-training cluster, so the base acoustic representation is already baked in.
Another guy recently trained a new CTC head from scratch for Bashkir on a single RTX 5090. Even though Bashkir had minimal coverage in the original pre-training data (under 500 hours), his WER dropped from an unusable 103% down to 7.2% in just over a day of training. Since Japanese has much more hours in the pretrain and since you already have clean Japanese datasets and the tokenizer pipelines ready to go, it would be sick to see if this smaller architecture can outshine 1.5B Whisper
Links:
Paper: https://arxiv.org/abs/2607.10371
GitHub with training code: https://github.com/salute-developers/GigaAM
Bashkir RTX 5090 fine-tune example: https://huggingface.co/AigizK/GigaAM-Bashkir-CV25
Looks interesting will try when I have time
For some reason rope is before linear, they copied bugs from facebook...
Fused to finetuned whisper-base decoder. bsz 64, trained only proj for 48k steps, then fft benchmarked on 4 dev sets at steps. Base encoder size is 10% and turbo is 300% with bigger decoder.
base|10.547|9.083|16.205|23.463|
turbo|3.857|5.445|13.958|21.179|
16k|11.156|9.055|15.914|24.068|
24k|8.248|8.651|16.499|24.721|
28k|8.382|9.159|15.229|23.665|
32k|8.426|8.413|15.517|23.576|
More steps/hpo would get it lower but performance looks closer to their English ablation. Probably better than whisper but not significantly enough to continue.
Thanks for giving it a shot anyway, appreciate you sharing the results!
Was there any improvement on speed at least?
Encoder speed is just size/subsampling. subsampling: whisper 2, gigaam 4