Papers for

machine translation teams

Papers whose findings have a practical use for this group, as judged from the abstract. Open a paper to read what it means in practice.

Span level supervision improves multilingual token and sentence representations

Improving Cross-Lingual Token Representations by Adding a Pinch of SALT

Abstract: Cross-lingual sentence encoders enable scalable transfer across hundreds of languages, powering applications such as translation mining and zero-shot learning in low-resource settings. Although trained for sentence-level alignment, they are increasingly also applied to token-level tasks such as hallucination detection and sequence tagging, exposing a mismatch between training and usage. We propose SALT, a lightweight post-training method that improves token representations by injecting span-level supervision into existing sentence encoders. Across five multilingual token-level benchmarks, SALT achieves the best overall results on four of them, outperforming alternative fine-tuning strategies and competitive encoders. It also improves sentence-level performance on cross-lingual retrieval and classification tasks. These results demonstrate that span-level supervision is an effective signal for improving both token and sentence representations.

Wed 9 SeptComputation and LanguageArtificial Intelligence
The gist
Many language processing tools are trained to understand whole sentences in many languages but are later used to analyze smaller parts like individual words or phrases, which can be tricky. The authors show a simple way called SALT that adds extra training focused on chunks of text within sentences to make the tools better at these smaller pieces. This leads to improved performance not only for word-level tasks but also for whole sentence tasks across multiple languages. Their approach works better than other fine-tuning methods on different language benchmarks.
Open 2609.09953v1

Multilingual language models struggle with consistent factual error rejection

SWORD: Wikidata-based Distortions Reveal Hidden Cross-Lingual Inconsistencies in LLM Factual Error Rejection

Abstract: Modern LLMs demonstrate impressive multilingual performance, yet standard benchmarks primarily reward selecting correct answers rather than evaluating genuine factual understanding. We introduce Systematic Wikidata-based Object-Relation Distortion (SWORD), a benchmark that evaluates whether models consistently reject factual errors across languages. SWORD generates syntactically well-formed but factually incorrect statements in eight widely spoken languages through controlled perturbations of Wikidata triples, ranging from random entity substitutions to semantically plausible property-based selections. Our distortion-based evaluation surfaces two critical insights that remain entirely obscured by conventional benchmarks. First, models counterintuitively achieve higher accuracy on semantically plausible distortions than on nonsensical random substitutions, suggesting reliance on distributional familiarity rather than genuine factual verification. Second, models exhibiting comparable baseline accuracy across languages show substantial performance degradation specifically on (East) Asian languages when presented with distorted statements, with cross-lingual performance gaps reaching up to 28 percentage points (49\% relative reduction) in some models. These findings demonstrate that multilingual factual reasoning involves asymmetric capabilities that aggregate accuracy metrics systematically obscure.

Tue 8 SeptComputation and Language
The gist
Large language models (LLMs) perform well in many languages but are usually tested only on picking correct answers, not really understanding facts. The authors created SWORD, a new test that checks if models can spot wrong facts in eight languages by changing Wikidata facts in tricky ways. They found that models often rely on familiar word patterns instead of true fact-checking, sometimes doing worse with Asian languages when facts are distorted. This shows that even if models seem good overall, they can have hidden weaknesses depending on the language and type of mistake.
Open 2609.09349v1

Automatic translation metrics struggle with social media culture

When Metrics Reward the Worst Translations: Internalizing Cultural Reasoning for Social Media Translation Evaluation

Abstract: Automatic translation quality metrics trained on general-domain corpora systematically fail on social media content, where communicative intent is encoded in culturally loaded expressions (internet slang, homophonic ciphers, and platform-specific idioms) rather than surface token patterns. We conduct a systematic empirical analysis demonstrating that standard metrics including COMET, XCOMET, and BERTScore exhibit near-zero or negative correlation with human cultural judgments, and even display a severity inversion in which scores increase as translation quality deteriorates. We further show that this failure extends to large language model judges: Qwen3-235B achieves Cohen's kappa of only 0.162, revealing that the bottleneck is not reasoning capacity but cultural grounding: models lack the domain-specific cultural knowledge needed to identify which aspects of a translation require scrutiny. To address this, we propose CuRIL, a reinforcement learning framework that internalizes cultural reasoning: cultural annotations are prepended inside the model's reasoning, excluded from policy gradients via a token-level loss mask, and injected with a probability that decays to zero over training, progressively forcing autonomous cultural judgment. On a 1,444-sample human-annotated social media translation benchmark, Qwen3-8B trained with CuRIL achieves Cohen's kappa 0.370 and Exact Match accuracy of 45.22%, approaching Gemini-3.1-Pro with 30x fewer parameters and surpassing models up to 235B in scale. We further demonstrate that our judge produces reliable reward signals for downstream translation optimization, reducing the low-quality translation rate by over 20 percentage points under independent human evaluation.

Tue 8 SeptComputation and Language
The gist
Current automatic tools that check translation quality don’t work well for social media posts because these posts use lots of slang, jokes, and cultural references. The authors found that popular metrics often give worse translations higher scores, which is misleading. They created a new training method called CuRIL that helps a smaller AI model understand cultural context better, improving its ability to judge social media translations more like humans. Their improved system helps reduce poor translations significantly when used to guide translation improvements.
Open 2609.08156v1