CoolFace
Datasetpublic

xzx34/cross-lingual-pitfalls

Cross-Lingual Pitfalls Cross-Lingual Pitfalls is a fixed, failure-focused dataset from the ACL 2025 paper "Cross-Lingual Pitfalls: Automatic Probing Cross-Lingual Weakness of Multilingual Large Language Models." It contains 6,713 bilingual English-to-target-language question pairs across 16 target languages. The paper's search-based multilingual LLM evaluation method uses beam search and LLM-based simulation to discover cases where a model answers correctly in English but fails… See the full description on the dataset page: https://huggingface.co/datasets/xzx34/cross-lingual-pitfalls.

sourceHugging Facemitupdated 2d agoView on Hugging Face
0likes134downloads
Dataset Card

Cross-Lingual Pitfalls

Cross-Lingual Pitfalls is a fixed, failure-focused dataset from the ACL 2025 paper "Cross-Lingual Pitfalls: Automatic Probing Cross-Lingual Weakness of Multilingual Large Language Models." It contains 6,713 bilingual English-to-target-language question pairs across 16 target languages. The paper's search-based multilingual LLM evaluation method uses beam search and LLM-based simulation to discover cases where a model answers correctly in English but fails on a semantically checked target-language version.

Unlike a fixed benchmark used only to estimate average multilingual accuracy, the generation method actively searches for cross-lingual consistency failures. This published dataset is a fixed snapshot, not a continuously updated benchmark. Results on these selected questions are diagnostic and should not be read as population-wide performance estimates for a language.

  • 🌐 Project page: https://xzx34.github.io/cross-lingual-pitfalls/
  • 📄 Paper (ACL Anthology): https://aclanthology.org/2025.acl-long.404/
  • 💻 Code & Data: https://github.com/xzx34/Cross-Lingual-Pitfalls
  • 📄 arXiv: https://arxiv.org/abs/2505.18673

Dataset summary

The pairs are produced by automatic probing (beam search + LLM-based simulation) to expose English-correct, target-language-wrong cases. On these selected failure-focused pairs, English accuracy is near-perfect while most evaluated models show target-language accuracy drops of over 50% in the paper's setting. Particularly large gaps occur in the tested low-resource languages. These results do not estimate average model accuracy on all questions from those languages.

The dataset probes multilingual question answering and cross-lingual consistency. It is not a benchmark for cultural knowledge, code-switching, translation quality, safety, or agent tool use. The generation method can be rerun for different model settings; the files released here do not change automatically.

Languages and pair counts (16 languages, 6,713 pairs)

LanguagePairsLanguagePairs
Chinese342Hindi327
Japanese314Arabic424
Korean456Hebrew319
French312Amharic665
Spanish242Yoruba813
Italian295Swahili417
Ukrainian323Zulu711
German322Bengali431
Total6,713

In the paper's evaluation on selected pairs, Amharic, Yoruba, Swahili, and Zulu show particularly large cross-lingual gaps.

Source benchmarks

Each pair originates from one of five English QA benchmarks (recorded in the source field):

SourcePairs
MMLU1,684
SciQ1,616
CommonsenseQA1,604
ARC962
TruthfulQA847

Data fields

Each record contains the English source question and answer, the target-language question, choices, and answer, the originating benchmark (source), the subject category, and the intermediate perturbation / translation / scoring fields used by the generation pipeline (e.g. oriquestion, transquestion, rate_ori, rate_trans).

Usage

python
from datasets import load_dataset

# load a single language
ds = load_dataset("xzx34/cross-lingual-pitfalls", "Chinese")

License & source data

The released questions and accompanying code are distributed under the MIT license, matching the code repository. Items are derived from MMLU, ARC, CommonsenseQA, TruthfulQA, and SciQ; downstream use is additionally subject to the terms of those upstream datasets.

Citation

bibtex
@inproceedings{xu-etal-2025-cross,
    title = "Cross-Lingual Pitfalls: Automatic Probing Cross-Lingual Weakness of Multilingual Large Language Models",
    author = "Xu, Zixiang  and Wang, Yanbo  and Huang, Yue  and Chen, Xiuying  and Zhao, Jieyu  and Jiang, Meng  and Zhang, Xiangliang",
    editor = "Che, Wanxiang  and Nabende, Joyce  and Shutova, Ekaterina  and Pilehvar, Mohammad Taher",
    booktitle = "Proceedings of the 63rd Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers)",
    month = jul,
    year = "2025",
    address = "Vienna, Austria",
    publisher = "Association for Computational Linguistics",
    url = "https://aclanthology.org/2025.acl-long.404/",
    doi = "10.18653/v1/2025.acl-long.404",
    pages = "8254--8284",
    ISBN = "979-8-89176-251-0"
}