REVIEW 4 major objections 6 minor 13 references
Cross-Lingual Pitfalls: Automatic Probing Cross-Lingual Weakness of Multilingual Large Language Models
T0 review · 4 major / 6 minor · reviewed 2026-08-07 · deepseek-v4-flash
Pith's one-line read An automated beam-search pipeline generates bilingual question pairs that make multilingual LLMs drop from near-perfect English accuracy to below 50% in target languages.
desk verdict A useful dataset for probing cross-lingual gaps, but the headline drop is partly a selection artifact and the semantic check needs more scrutiny before the numbers are trusted. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing object is the beam-search pipeline driven by the simulation score $V(q^{E'}, q^{T'}) = (\bar{\beta}^{E'})^{\gamma} - \bar{\beta}^{T'}$, where $\bar{\beta}^{E'}$ and $\bar{\beta}^{T'}$ are the average accuracies of a panel of LLMs on the perturbed English and target-language questions and the exponent $\gamma > 1$ rewards pairs that keep English accuracy high. The perturbation function $\varphi$ takes an English question and one of the incorrect answer choices and generates a semantically irrelevant but contextually plausible insertion, which is then translated into the target language; a semantic-similarity constraint with thresholds $\theta$ and $\theta'$ is meant to guarantee meaning preservation. The search uses an inclusion threshold $\theta_{\text{inc}}$, an early-stopping potential threshold $\theta_{\text{pot}}$, and a redundancy control. A second named object, the Relative Affinity Score $D_{x,y}$, measures how much weakness observed in language $y$ transfers to language $x$, with lower values indicating stronger affinity; this is what carries the linguistic-similarity findings.
What would settle it
Take the question pairs with the largest English-to-target-language accuracy drops, have several independent fluent speakers (blind to the models' outputs) re-check each pair for semantic equivalence and answer consistency, and recompute the average accuracy gap on only the pairs that pass; if the recomputed gap shrinks well below the reported 50%, the headline weakness is largely a translation artifact.
Extended reading notes
Core claim
The central claim is that cross-lingual weaknesses in LLMs are discoverable by optimizing for the accuracy gap between English and a target language rather than for absolute accuracy. The method starts with English multiple-choice questions from existing benchmarks, translates them, and then applies a beam search: at each step a proxy LLM adds a contextually plausible but semantically neutral distraction linked to an incorrect answer option, the distraction is translated into the target language, and a panel of LLM 'simulators' scores each pair by $V(q^{E'}, q^{T'}) = (\bar{\beta}^{E'})^{\gamma} - \bar{\beta}^{T'}$ with $\gamma > 1$. Only pairs that satisfy a semantic-similarity check and exceed an inclusion threshold enter the candidate list. Evaluated on ten models, the resulting pairs leave English accuracy near perfect while target-language accuracy falls by over 50% on average, with GPT-4o and Claude-3.5-Sonnet still dropping more than 30% on Chinese. The paper further claims that weaknesses transfer along linguistic family lines, quantified by a Relative Affinity Score, and that fine-tuning on Chinese or French preferentially improves related languages such as Japanese/Korean or German/Spanish.
Load-bearing premise
The measurements are only valid if every translated and perturbed question means the same thing in both languages, so that a wrong answer in the target language is a real model weakness rather than a translation artifact.
Editorial extensions
If this is right
- Running the same pipeline on a different model's or dataset's English questions produces a language-specific probe set without manual prompting.
- The released 6,713-pair, 16-language dataset can serve as a diagnostic benchmark: models scoring near 100% in English and far lower in a target language reveal exactly where multilingual alignment fails.
- Fine-tuning on one language transfers most to linguistically similar languages, so targeted post-training should prioritize those pairs.
- Because the simulation panel can be changed, the method can identify cross-lingual weaknesses of any given LLM by including that model in the simulator set.
Reading between the lines
- The same search-and-simulate machinery could be applied to languages outside QA, such as probing cross-lingual instruction following or safety refusal behavior, since the perturbation generator only needs a question and an answer set.
- The reported cost asymmetry — weaknesses cost more to find in French, Spanish, Italian, and German than in lower-resource languages — could mean these models genuinely transfer better to languages close to English, or that the perturbation search space is less expressive there; a follow-up could distinguish the two.
- Because human evaluation measured semantic equivalence at 83–98% per language, a small fraction of pairs may carry semantic drift; if drift concentrates in the largest-gap pairs, the dataset as a benchmark should be filtered by stricter human verification.
- The behavioral Relative Affinity Score could be used to build empirically derived language-family trees of model competence, complementing typological measures and possibly revealing where model representations diverge from human linguistic classifications.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes an automatic pipeline for generating bilingual multiple-choice question pairs that expose cross-lingual weaknesses in LLMs. The pipeline translates English questions, iteratively perturbs them via beam search, and uses a set of five LLMs to score each pair by the simulated English-versus-target-language accuracy gap. This yields a 16-language dataset of 6,713 pairs. The authors evaluate ten models on this dataset, report large average accuracy drops in target languages, analyze how weaknesses cluster by linguistic family using a proposed Relative Affinity Score and embedding visualizations, and show that fine-tuning on one language improves performance more on linguistically related languages.
Significance. If the headline results are trustworthy, the paper contributes a low-cost diagnostic method and a reusable multilingual evaluation dataset, both of which are genuinely useful for studying cross-lingual robustness. The paper also attempts to connect observed weaknesses to linguistic similarity and demonstrates a possible targeted fine-tuning application. The authors are transparent about some limitations, and the release of code and data is a plus. However, the central quantitative claim ('over 50% accuracy drops') is currently supported by a procedure in which the models that guide the search also appear in the main evaluation, and the semantic-equivalence safeguard is not reported or validated on the items that matter most. These issues must be resolved before the main claims can be accepted.
major comments (4)
- [Section 2.3 (Eq. 8) and Section 3.2] The simulation model set M is used to rank candidate pairs via the score V(qE', qT') = (β̄_E')^γ − β̄_T', and the same five models (Llama-3.1-8B, Gemma-2-9B, Gemma-2-27B, GPT-4o-mini, Qwen2.5-72B) then appear in the final accuracy evaluations in Figure 5 and Figures 11–25. For these models, a large portion of the reported drop is guaranteed by the selection criterion rather than being an independent discovery. The aggregate 'over 50% drop' figure therefore conflates in-search and held-out models. Please report results separately for the simulation models and for held-out models, recompute the aggregate without the in-search models, and state per-model average drops for each group.
- [Section 2.2 (Eq. 4) and Appendix C] The semantic-equivalence constraints S(qE, qE') ≥ θ and S(qE', qT') ≥ θ′ are central to the claim that target-language failures are model weaknesses rather than translation artifacts, but θ and θ′ are never specified anywhere, including Appendix B.1. In addition, the human evaluation in Appendix C samples 100 random pairs per language, which is not the right conditioning: the search objective preferentially retains pairs with large English-target gaps, so even a small overall semantic-failure rate could be concentrated in exactly the high-drop subset that drives the headline. Please report the threshold values and the semantic-check prompt, and perform a targeted human evaluation on the top-drop pairs per language (e.g., the top decile by simulated gap) to quantify semantic-equivalence and answer-consistency rates on the pairs that actually determine the reported numbers.
- [Abstract and Section 3.2 (Figure 5)] The abstract claims that the method 'consistently reveal[s] over 50% accuracy drops in target languages across a wide range of models,' but the per-model results shown for Chinese indicate that held-out top models such as GPT-4o and Claude-3.5-Sonnet exhibit roughly 30% drops, with the larger drops concentrated among the five simulation models. The aggregate claim is misleading unless it is explicitly restricted to the simulation models or recomputed on a held-out-only basis. Please restate the claim to match the evidence, or provide new held-out results that support the original wording.
- [Section 3.3 (RAS, Figure 7)] The Relative Affinity Score Dx,y is defined directly from model accuracy on expanded pairs and is then used to conclude that 'languages with closer linguistic ties tend to share cross-lingual weaknesses.' Because the same accuracy data define both the affinity measure and the outcome it is supposed to explain, the reasoning is at risk of circularity. Please validate RAS against an independent linguistic distance measure (e.g., phylogenetic distance, Levenshtein distance, or a published language-family taxonomy), or run a permutation test that shuffles language labels to show that the observed clustering is stronger than chance.
minor comments (6)
- [Appendix C] The human evaluation does not report inter-annotator agreement, and the four annotators are described as 'proficient in English and various translation tools' rather than native or near-native speakers of all 16 target languages; this is especially relevant for Amharic, Yoruba, Zulu, and other lower-resource languages.
- [Section 2.2 (Eq. 2)] The wording that φ 'preserv[es] its original semantics and embedding patterns influenced by the incorrect answer' is confusing, since the perturbation is explicitly generated from the incorrect answer; please clarify whether the perturbation is semantically neutral, misleading, or merely contextually plausible.
- [Table 1] The No Perturbation (NP) baseline reports a conversion rate of 0.000 for Chinese, yet Figure 1 shows a direct English-Chinese pair (apparently without perturbation) that causes GPT-4o to fail; please clarify the exact definition of 'conversion rate' and state which models are used for the baseline comparison.
- [Appendix B.1] The hyperparameter list omits the semantic-similarity thresholds θ and θ′ from Eq. (4), and the semantic-check prompt is not included in Appendix E; these should be documented for reproducibility.
- [Section 3.4 (Tables 2 and 5)] The phrase 'simulated DPO' is used without explanation; please describe how the DPO preference pairs were constructed and whether this is a standard DPO setup.
- [Section 3.3 (RAS definition)] The text uses both 'C' and 'c' for the same constant, and Appendix B.1 states 'C was set to -1' while the formula and prose use lowercase c; please unify the notation.
Circularity Check
Reported >50% drops for the five simulation models are enforced by the inclusion threshold; held-out models provide partial independent support.
-
fitted input called prediction
[Section 2.3 Eq. (8); Section 2.4 'Inclusion Threshold Strategy'; Appendix B.1 hyperparameters]
"V(q^{E'}, q^{T'}) = (β̄^{E'})^γ − β̄^{T'} ... A bilingual pair is immediately included in the candidate list if its simulation score exceeds a predefined inclusion threshold θinc ... θinc was set to 0.8 ... the models used for simulation typically exhibit greater accuracy degradation."
The candidate list is defined by thresholding the same simulation score V that is later reported as the cross-lingual accuracy drop. With γ=2 and θinc=0.8, every accepted pair satisfies (β̄^{E'})^2 − β̄^{T'} ≥ 0.8; since β̄^{E'} ≤ 1, this forces β̄^{T'} ≤ 0.2 for the average of the five simulation models (Llama-3.1-8B, Gemma-2-9B, Gemma-2-27B, GPT-4o-mini, Qwen2.5-72B). Thus a ≥80% target-language failure for these models is guaranteed by the construction of the dataset, not discovered by evaluation. Including the same five models in the 10-model evaluations of Figures 3 and 5 means part of the headline 'over 50% accuracy drops across a wide range of models' is the optimization objective restated as an empirical finding.
full rationale
The paper's core pipeline is an optimization: beam search drives V = (β̄^{E'})^γ − β̄^{T'} (Eq. 8) upward, and a bilingual pair is admitted to the candidate list once V ≥ θinc, with θinc set to 0.8 (Appendix B.1). For the five simulation models, this inclusion rule mathematically forces average target-language accuracy to ≤0.2, i.e., an accuracy drop of at least 80% relative to English, independent of any genuine cross-lingual weakness. Reporting those five models in the aggregate 'over 50% accuracy drop' figures is therefore the selection criterion evaluated on the same models that defined it. This is a genuine partial circularity. It is mitigated by the paper's explicit acknowledgment that 'the models used for simulation typically exhibit greater accuracy degradation,' and more importantly by the held-out models: GPT-4o, Claude-3.5-sonnet, o1-mini, Yi-Lightning, and Llama-3.1-70B were not in the initial simulation set, yet they also show large drops, so the strongest SOTA-model claim has independent content. The missing threshold values θ and θ′ and the random human-evaluation sampling are threats to validity, but they are not circularity under the stated criteria, so I do not count them here. I found no load-bearing self-citation or imported uniqueness theorem; the citation to Huang et al. (2025b) is only motivational. Overall the central method is not equivalent to its inputs—the held-out results break the loop—but a substantial portion of the reported aggregate gap is forced by construction, warranting a partial-circularity score of 6.
Assumptions & free parameters
free parameters (6)
- Simulation score exponent gamma =
2
- Inclusion and potential thresholds theta_inc, theta_pot =
0.8 and 0.6
- Beam search width and depths =
w=12, d1=4, d2=6, r=3, W=4
- RAS constant c =
-1
- Semantic similarity thresholds theta and theta' =
Not reported
- Simulation model set M =
Llama-3.1-8B, Gemma-2-9B, Gemma-2-27B, GPT-4o-mini, Qwen2.5-72B
assumptions (5)
- domain assumption Cross-lingual weakness is defined as correct in English but incorrect in at least one other language, with English treated as the model's strongest language.
- domain assumption LLM-based translation plus LLM semantic checks preserve meaning and answer consistency across languages.
- domain assumption The five-model simulation set M is a reliable proxy for the behavior of other LLMs.
- domain assumption Inserting 2-3 context sentences around a question increases cognitive difficulty without changing the correct answer.
- domain assumption The Relative Affinity Score D_x,y, computed from model accuracies, is a valid measure of linguistic proximity.
Cite this review
Pith. "Pith review of Cross-Lingual Pitfalls: Automatic Probing Cross-Lingual Weakness of Multilingual Large Language Models." pith.science (2026). https://pith.science/paper/KFVOTV3C
@misc{pith2026250518673,
author = {Pith},
title = {Pith review of: Cross-Lingual Pitfalls: Automatic Probing Cross-Lingual Weakness of Multilingual Large Language Models},
year = {2026},
howpublished = {\url{https://pith.science/paper/KFVOTV3C}},
note = {Machine review of arXiv:2505.18673}
}
read the original abstract
Large Language Models (LLMs) have achieved remarkable success in Natural Language Processing (NLP), yet their cross-lingual performance consistency remains a significant challenge. This paper introduces a novel methodology for efficiently identifying inherent cross-lingual weaknesses in LLMs. Our approach leverages beam search and LLM-based simulation to generate bilingual question pairs that expose performance discrepancies between English and target languages. We construct a new dataset of over 6,000 bilingual pairs across 16 languages using this methodology, demonstrating its effectiveness in revealing weaknesses even in state-of-the-art models. The extensive experiments demonstrate that our method precisely and cost-effectively pinpoints cross-lingual weaknesses, consistently revealing over 50\% accuracy drops in target languages across a wide range of models. Moreover, further experiments investigate the relationship between linguistic similarity and cross-lingual weaknesses, revealing that linguistically related languages share similar performance patterns and benefit from targeted post-training. Code is available at https://github.com/xzx34/Cross-Lingual-Pitfalls.
Figures
Figures from the paper (23 more)
Reference graph
Works this paper leans on
-
[1]
text": "<Texte traduit en français>
The distraction should naturally integrate with the context of the question but must not explicitly introduce incorrect information or contradict the correct answer. 2. The distraction must be subtle and should not make it obvious that it is related to the incorrect option. [The Start of the Question] {question} [The End of the Question] [The Start of the...
-
[2]
Include 1-2 practical application examples after the question
-
[3]
Openai o1 system card.arXiv preprint arXiv:2412.16720. Naman Jain, King Han, Alex Gu, Wen-Ding Li, Fanjia Yan, Tianjun Zhang, Sida Wang, Armando Solar- Lezama, Koushik Sen, and Ion Stoica. 2024. Live- codebench: Holistic and contamination free eval- uation of large language models for code.arXiv preprint arXiv:2403.07974. Yuan Li, Yue Huang, Hongyi Wang, ...
arXiv 2024
-
[4]
Preserve original question wording
-
[5]
NEVER mention or include any answer choices
-
[6]
S Enh." represents the model enhanced by SFT, and
Qwen2 technical report.arXiv preprint arXiv:2407.10671. Binwei Yao, Ming Jiang, Diyi Yang, and Junjie Hu. 2023. Benchmarking llm-based machine translation on cultural awareness.arXiv preprint arXiv:2305.14328. Jiayi Ye, Yanbo Wang, Yue Huang, Dongping Chen, Qihui Zhang, Nuno Moniz, Tian Gao, Werner Geyer, Chao Huang, Pin-Yu Chen, et al. 2024. Justice or p...
arXiv 2022
-
[8]
Add 2-3 background sentences before the original question
-
[10]
Keep all technical terms but expand their explanations
Show all 13 references
-
[13]
[Output Format] New question: <Your modified question WITHOUT ANY CHOICES>
Omit any reference to multiple-choice options. [Output Format] New question: <Your modified question WITHOUT ANY CHOICES>
-
[2021]
Mark Chen, Jerry Tworek, Heewoo Jun, Qiming Yuan, Henrique Ponde De Oliveira Pinto, Jared Ka- plan, Harri Edwards, Yuri Burda, Nicholas Joseph, Greg Brockman, et al
Generalization in nli: Ways (not) to go beyond simple heuristics.arXiv preprint arXiv:2110.01518. Mark Chen, Jerry Tworek, Heewoo Jun, Qiming Yuan, Henrique Ponde De Oliveira Pinto, Jared Ka- plan, Harri Edwards, Yuri Burda, Nicholas Joseph, Greg Brockman, et al. 2021. Evaluat...
-
[2023]
Job Schepens, Ton Dijkstra, and Franc Grootjen
Direct preference optimization: Your lan- guage model is secretly a reward model.Advances in Neural Information Processing Systems, 36:53728– 53741. Job Schepens, Ton Dijkstra, and Franc Grootjen. 2012. Distributions of cognates in europe as based on lev- enshtein distance.Bil...
2012 arXiv
-
[2024]
Lang Gao, Xiangliang Zhang, Preslav Nakov, and Xi- uying Chen
Continual pre-training for cross-lingual llm adaptation: Enhancing japanese language capabili- ties.arXiv preprint arXiv:2404.17790. Lang Gao, Xiangliang Zhang, Preslav Nakov, and Xi- uying Chen. 2024. Shaping the safety boundaries: Understanding and defending against jailbrea...
2024 arXiv
-
[2025]
Preprint, arXiv:2408.02900
Medtrinity-25m: A large-scale multimodal dataset with multigranular annotations for medicine. Preprint, arXiv:2408.02900. Rongwu Xu, Zehan Qi, Zhijiang Guo, Cunxiang Wang, Hongru Wang, Yue Zhang, and Wei Xu. 2024. Knowledge conflicts for llms: A survey.arXiv preprint arXiv:240...
2024 arXiv
Reviewed August 7, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.