Evaluates the multilingual language fidelity and question-answering accuracy of open LLMs across 137 typologically diverse languages. It probes whether models respond in the prompt's language and whether their answers are factually correct, highlighting the impact of tokenization strategies and model scaling on multilingual performance. Use when the user wants to benchmark on MultiQ, or asks about evaluating this task. Reports QA accuracy (%).
Scanned 9/11/2026
Install to Claude Code
npx -y skills add qhjqhj00/research-skills-pool --skill multiq-eval --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Multiq Eval?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/qhjqhj00-multiq-eval)More formats (shields.io, HTML) on the badges page.
---
name: multiq-eval
description: Evaluates the multilingual language fidelity and question-answering accuracy of open LLMs across 137 typologically diverse languages. It probes whether models respond in the prompt's language and whether their answers are factually correct, highlighting the impact of tokenization strategies and model scaling on multilingual performance. Use when the user wants to benchmark on MultiQ, or asks about evaluating this task. Reports QA accuracy (%).
metadata:
skill_kind: dataset_eval
source_arxiv: 2403.03814
bibtex_key: rottger2024multiq
confidence: high
---
# multiq-eval
> Evaluating the Elementary Multilingual Capabilities of Large Language Models with MultiQ — Röttger et al. (2024) (arXiv:2403.03814, 2024)
## What this evaluates
Evaluates the multilingual language fidelity and question-answering accuracy of open LLMs across 137 typologically diverse languages. It probes whether models respond in the prompt's language and whether their answers are factually correct, highlighting the impact of tokenization strategies and model scaling on multilingual performance.
## Datasets
- **MultiQ** — total 27400; splits: full (27400); repo https://github.com/paul-rottger/multiq
## Metrics
- `QA accuracy (%)` **(primary)** — range: percent
- Proportion of correctly answered questions out of the total, calculated as (correct answers / total questions) × 100. Correctness is determined by a GPT-4 classifier prompted to compare the model's open-ended response against the English ground-truth answer.
- `Language fidelity (%)` — range: percent
- Proportion of model responses that match the language of the input prompt, calculated as (matches / total responses) × 100. Identified using the GlotLID language identification model.
## Input / output format
**Input**: Open-ended question in one of 137 languages.
**Output**: Open-ended answer in any language (determined by the model).
## Scoring recipe
```python
def score_qa_accuracy(predictions, gold_answers):
correct = 0
for pred, gold in zip(predictions, gold_answers):
# gold_answers are in English
is_correct = gpt4_judge(prompt=pred, reference=gold)
if is_correct:
correct += 1
return (correct / len(predictions)) * 100
```
## Common pitfalls
- The GPT-4 automated evaluator is highly precise on correct answers but less precise on incorrect ones, likely underestimating the true proportion of correct answers.
- Language fidelity analysis excludes Meiteilon and Dogri because the GlotLID tool does not support them.
- High language fidelity does not guarantee high QA accuracy, as models may simply repeat the prompt question rather than providing a factually correct answer.
## Evidence (verbatim from paper)
> Table 3: QA accuracy on MultiQ (%). We show accuracy overall, on English questions, and on the top(▲) 10, 20 and 50 best-performing languages for each model. Highest accuracy across models is bold.
## Citation
```bibtex
@misc{rottger2024multiq,
title={Evaluating the Elementary Multilingual Capabilities of Large Language Models with MultiQ},
author={Röttger et al. (2024)},
year={2024},
note={arXiv:2403.03814}
}
```
- arXiv: 2403.03814
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!