Research
NiuTrans.LMT: Toward Inclusive and Scalable Multilingual Machine Translation with LLMs
Overview Research area: Natural Language Processing — multilingual machine translation (MMT) with large language models (LLM adaptation, supervised fine-tuning, cross-lingual transfer). Technical leve
- arXiv
- 2511.07003
- Published
- 2025-11-10
- Authors
- Yingfeng Luo, Ziqiang Xu, Yuxuan Ouyang, Murun Yang, Dingyang Lin, Kaiyan Chang, Tong Zheng, Bei Li, Peinan Feng, Quan Du, Tong Xiao, Jingbo Zhu
AI summary
Overview
Research area: Natural Language Processing — multilingual machine translation (MMT) with large language models (LLM adaptation, supervised fine-tuning, cross-lingual transfer).
Technical level: Intermediate. The paper assumes familiarity with LLM post-training pipelines (continued pre-training, SFT, preference optimization) and standard MT evaluation metrics (COMET, BLEU), but its central ideas are intuitive enough for a non-specialist to follow.
Scope: The paper diagnoses a failure mode in multilingual fine-tuning called Directional Degeneration, proposes two mitigation techniques, and releases a family of Chinese–English-centric translation models covering 60 languages and 234 directions.
What This Paper Is About
When researchers fine-tune a large language model to translate among many languages, they commonly reuse multi-way parallel corpora (datasets where the same sentence exists in dozens of languages) in both directions around a pivot language like English. This paper shows that doing so symmetrically causes a severe, previously under-examined collapse: translations into the pivot language become fluent but factually wrong. The goal is to explain why this happens and to build a scalable, Chinese–English-centric translation suite that avoids the problem.
Key Contributions
-
Identification and diagnosis of Directional Degeneration. The authors show that symmetric reuse of multi-way parallel data in SFT degrades X→pivot directions while improving pivot→X, and attribute it to excessive many-to-one mappings that encourage shortcut learning.
-
Strategic Downsampling (SD). A simple data-level fix: keep all pivot→X training instances but retain only a small fraction (5% by default) of the reverse X→pivot instances drawn from multi-way corpora.
-
Parallel Multilingual Prompting (PMP). A prompting-and-training scheme that augments the translation instruction with an auxiliary parallel sentence in a third language, acting as a semantic anchor. It strengthens cross-lingual transfer during training and can optionally be activated at inference for self-improvement.
-
The LMT model suite. Four Chinese–English-centric multilingual translation models (0.6B/1.7B/4B/8B parameters, built on Qwen3), covering 60 languages and 234 translation directions, released publicly along with data resources and a new Mongolian (traditional script) test set.
Main Findings
-
The degeneration is real and general. Under standard symmetric SFT, reverse directions (X→English/Chinese) dropped by 2–12 COMET points on both 4B and 8B backbones. The same asymmetric pattern appeared across Qwen3 model sizes (0.6B–8B), Llama-3.1-8B, and Gemma-2-9B, and worsened as more languages were added.
-
The cause is data usage, not task difficulty. Replacing reverse-direction multi-way data with a disjoint bilingual subset eliminated the collapse, showing that the problem comes from how the same pivot-language target is repeatedly reused, not from X→English being inherently hard.
-
There is an inverted-V relationship with retention rate. Performance on reverse directions peaks at a small retention rate (around 5%) and declines sharply as retention approaches 100%, confirming that excessive target repetition triggers the failure.
-
SD restores reverse directions. Applying SD recovered roughly 2–13 COMET points on X→pivot directions relative to the SFT baseline, exceeding even the original base model, while leaving forward directions intact.
-
Continued pre-training matters most for low-resource languages. CPT contributed 1–3 COMET points in high- and medium-resource settings but 5–9 points in low-resource directions, indicating it is the key step for strengthening weak multilingual foundations.
-
GRPO squeezes out extra gains from the same data. Preference optimization with COMET-22 as reward added approximately 0.3–0.8 points across resource tiers without introducing any new training examples.
-
PMP helps asymmetrically at inference. On X→English/Chinese, a self-generated auxiliary sentence performed as well as an oracle one, making self-boosting practical. On Chinese→X, only oracle-quality anchors produced clear gains, since noisy anchors degrade performance.
-
PMP improves zero-shot transfer. Training with PMP raised average COMET from 85.20 to 86.11 on in-group anchored directions, and also improved directions whose languages were never used as anchors during training.
-
Small models compete with much larger ones. LMT-60-4B matched or outperformed X-ALMA-13B, Aya-101-13B, and NLLB-54B on overlapping directions, and LMT-60-8B was competitive with Seed-X-PPO-7B.
Methodology in Plain English
The team started from Qwen3 base models because a preliminary comparison showed Qwen3 had broader multilingual coverage than other open models of similar scale. They then ran a three-stage adaptation:
Stage 1 — Continued Pre-training. They trained on roughly 90 billion tokens of mixed monolingual and parallel text, balanced evenly across monolingual data, Chinese-centric bilingual data, and English-centric bilingual data. Since Chinese-centric parallel data is scarce, they supplemented authentic OPUS data with synthetic translations generated by strong MT systems, then filtered everything with length-ratio checks, language identification, and COMETKiwi quality scoring. The result was about 2.1 billion English-centric and 2.9 billion Chinese-centric sentence pairs.
Stage 2 — Supervised Fine-Tuning. They fine-tuned on roughly 567K high-quality parallel pairs built mainly from FLORES-200 and NTREX-128, supplemented with SMol and WMT/IWSLT test sets to add domain and style variety. Here they applied Strategic Downsampling (keeping all forward directions, retaining 5% of reverse multi-way instances) and mixed in Parallel Multilingual Prompting samples.
Stage 3 — Preference Optimization. They reused the same SFT prompts to generate candidate translations and scored them with COMET-22, then applied GRPO to reinforce better candidates.
Before building the full suite, the authors ran controlled experiments to verify their hypothesis: they varied data usage (replacing reverse data with disjoint data, or gradually increasing the reverse retention rate from 0% to 100%), varied the model (different sizes and families), and varied the multilingual scale (10 to 50 languages). This three-axis design let them separate the cause from confounding factors.
Evaluation used FLORES-200 Devtest with COMET-22 as the primary metric, plus SacreBLEU and WMT24++ in the appendix. Comparisons were made strictly on the intersection of languages each baseline supports, ensuring fairness.
Why This Matters
Impact on research. The paper reframes a practical training pathology as a data-usage problem rather than a model-capacity problem. This contrasts with concurrent work that attributes the same asymmetric degradation to the "curse of multilinguality" and addresses it with model-level interventions like direction-aware training or model merging. Showing that a one-line data sampling change suffices is a significant simplification, and it invites the community to re-examine how multi-way corpora are consumed in other multilingual tasks beyond translation.
Real-world applications:
- Low-resource language digitization. Organizations preserving or publishing content in underserved languages can deploy the released models for two-way translation where no dedicated system exists.
- Chinese-centric business and government translation. Most open MMT systems are English-centric; LMT provides strong Chinese↔58-language coverage suited to cross-border commerce, legal, and public-service workflows.
- Multilingual content moderation and localization. Platforms needing to handle 60 languages with limited compute can use the 0.6B or 1.7B variants.
- Self-improving translation pipelines. The PMP-S finding means a deployed system can boost its own output by generating its own auxiliary anchors, without paying for external reference translations.
Industry relevance. The result that a 4B model matches 13B and 54B baselines directly affects deployment economics — smaller models mean lower inference costs, easier on-premise hosting, and better latency. The paper also releases a Mongolian (traditional script) test set, filling a benchmark gap, and provides a data curation recipe for building non-English-centric parallel corpora.
Future Directions
-
Extending beyond the bi-centric design. The authors acknowledge that centering on Chinese and English is a simplifying choice and suggest exploring tri-centric or multi-centric configurations, studying how such setups affect interference and transfer.
-
Scaling past 60 languages. Reaching broader linguistic coverage is limited less by training cost than by the availability and quality of text and parallel data for underrepresented languages, especially those with limited written resources.
-
Better quality estimation for non-English-centric pairs. The appendix notes that COMETKiwi scores are systematically skewed low for non-English pairs, possibly reflecting model bias rather than true quality — motivating more robust QE methods.
-
Predictive handling of directional degeneration. A natural question is whether the optimal downsampling rate can be derived automatically from corpus statistics (number of source languages per pivot target, typological diversity) rather than tuned empirically.
-
More realistic evaluation. The paper relies largely on COMET over academic benchmarks; extending evaluation to document-level, domain-specific, and interactive translation scenarios would test whether the gains hold in practice.
Target Audience
This paper is most useful to MT researchers and engineers building multilingual systems, particularly those adapting decoder-only LLMs to translation, who will benefit from the concrete diagnosis of Directional Degeneration and the low-cost fixes. It is also valuable to practitioners deploying translation at scale, who can use the released model suite and the parameter-efficiency results to justify smaller deployment footprints. Data curators and dataset builders will find the CPT data pipeline and the discussion of quality-estimation bias instructive. Readers seeking a formal theoretical treatment of shortcut learning will find the paper's evidence empirical rather than mathematical, but its controlled three-axis experimental design is a model of clear methodological reasoning.
Authors’ abstract
Large language models have significantly advanced Multilingual Machine Translation (MMT), yet scaling to many languages while keeping quality robust across directions remains challenging. In this paper, we identify a failure mode of multilingual supervised fine-tuning (SFT) on multi-way parallel data: when such data are reused symmetrically around a pivot language (e.g., English), performance on reverse directions (X $\to$ pivot) can drop substantially. We term this phenomenon Directional Degeneration and attribute it to excessive many-to-one mappings, which encourage shortcut learning. We propose Strategic Downsampling (SD), a simple yet effective method to mitigate this degeneration. In addition, we introduce Parallel Multilingual Prompting (PMP), which augments translation instructions with an auxiliary parallel sentence to promote cross-lingual transfer during training and enables optional test-time enhancement when auxiliary translations are available. We further develop \textbf{NiuTrans.LMT} (\textbf{L}arge-scale \textbf{M}ultilingual \textbf{T}ranslation, abbreviated as \textbf{LMT}), a Chinese-English-centric suite of multilingual translation models spanning four sizes (0.6B/1.7B/4B/8B) and covering 60 languages and 234 directions. Comprehensive evaluations show that LMT is competitive among open-source MMT systems, and that our 4B LMT model performs on par with or better than substantially larger baselines. We release our models and project resources to support inclusive and scalable MMT.