Echoes Across Vietnam's Highlands, Delta, and Coast: A Multilingual Corpus for Cham, Khmer, and Tay-Nung
Summary
CKTN, the first multilingual corpus and benchmark for Vietnam's Cham, Khmer, and Tay-Nung languages, addresses their severe underrepresentation in NLP. Comprising 44,367 documents and 24M subword tokens, CKTN supports continued pretraining, category classification, and summary-document retrieval. The research reveals that existing multilingual encoders like mBERT, XLM-R, and RemBERT heavily fragment these languages, and standard metrics such as MLM loss and lexical-overlap retrieval can misrepresent model quality. To counter this, a novel script-aware adaptation recipe, combining vocabulary augmentation with calibrated replaced-token pretraining, was developed. This approach prevents discriminators from exploiting superficial script mismatches, yielding CKTN-ELECTRA, an encoder with significantly reduced fragmentation and superior classification performance (0.9214 accuracy, 0.7103 Macro-F1) compared to other models.
Key takeaway
For NLP engineers adapting multilingual models to low-resource, script-diverse languages, you should prioritize vocabulary augmentation and calibrated replaced-token pretraining. Your evaluation should emphasize classification performance over lexical-overlap retrieval, as the latter can mask poor semantic generalization. Implement script-aware filtering and linear loss scheduling in ELECTRA-style pretraining to avoid trivial shortcut learning and achieve robust cross-document semantic understanding.
Key insights
Effective NLP for script-diverse, low-resource languages demands tailored adaptation methods that overcome tokenizer fragmentation and misleading evaluation metrics.
Principles
- Multilingual encoders disproportionately fragment low-resource languages.
- MLM loss and lexical-overlap retrieval can misrepresent semantic generalization.
- Script heterogeneity poses a specific risk for ELECTRA-style pretraining.
Method
The adaptation recipe combines vocabulary augmentation (candidate selection, score calibration, embedding initialization) with script-aware calibrated replaced-token pretraining, using a smaller generator, difficulty-calibrated replacement sampling, and linear loss scheduling.
In practice
- Augment vocabulary to reduce fragmentation in low-resource language models.
- Implement script-aware filtering for replaced tokens to prevent shortcut learning.
- Use linear scheduling to stabilize generator-discriminator training in RTD.
Topics
- Low-Resource NLP
- Multilingual Language Models
- Vocabulary Augmentation
- ELECTRA Pretraining
- Cham Language
- Khmer Language
- Tay-Nung Language
Best for: Research Scientist, AI Scientist, Machine Learning Engineer, NLP Engineer
Related on AIssential
See Counsel's argued verdicts on the open AI decisions leaders are weighing →
Editorial summary, takeaway, and curation by AIssential. Original article published by cs.CL updates on arXiv.org.