Tokenizer Transplantation: Mitigating Autoregressive Collapse in Edge-Efficient Bengali ASR

· Source: cs.CL updates on arXiv.org · Field: Technology & Digital — Artificial Intelligence & Machine Learning, Natural Language Processing · Depth: Expert, long

Summary

A novel tokenizer transplantation pipeline addresses autoregressive collapse in lightweight Automatic Speech Recognition (ASR) models like Moonshine when applied to morphologically rich, non-Latin languages such as Bengali. The core issue identified is the original English-centric byte-level tokenizer, which excessively fragments Bengali words, leading to high token fertility (9.16) and decoding instability. The proposed solution replaces the decoder's vocabulary with a native-script BanglaBERT WordPiece vocabulary and resizes the token embedding matrix. This method reduces token fertility to 1.30, decreasing autoregressive sequence length by 85.8% and entirely mitigating decoding instability. Evaluated on the 882-hour Lipi-Ghor dataset, the modified 61.5M parameter architecture achieves a competitive 21.54% Word Error Rate (WER) and an impressive Real-Time Factor (RTF) of 0.0053, outperforming larger models in efficiency. This research offers a scalable blueprint for cross-script adaptation of compact ASR models without extensive pre-training.

Key takeaway

For Machine Learning Engineers deploying lightweight ASR models to non-Latin, morphologically rich languages, you should prioritize tokenizer adaptation to prevent autoregressive collapse. Your existing English-optimized models will likely fail due to high token fertility. Instead, transplant a native-script vocabulary like BanglaBERT after initial acoustic fine-tuning. This approach, combined with a two-stage recovery optimization, achieves competitive accuracy and high inference efficiency on edge devices, avoiding resource-intensive pre-training.

Key insights

Replacing English-centric tokenizers with native-script vocabularies prevents autoregressive collapse in edge ASR for morphologically rich languages.

Principles

Method

Fine-tune acoustic encoder, transplant native-script vocabulary, then apply a two-stage recovery optimization with high and then reduced learning rates.

In practice

Topics

Code references

Best for: AI Engineer, Research Scientist, AI Scientist, Machine Learning Engineer, NLP Engineer

Related on AIssential

Open in AIssential →

Editorial summary, takeaway, and curation by AIssential. Original article published by cs.CL updates on arXiv.org.