Evaluates the multilingual visual-language understanding capabilities of multimodal large language models (MLLMs) across six languages (English, Chinese, Portuguese, Arabic, Turkish, Russian). It probes how well models align visual features with non-English textual instructions and handle cross-lingual multimodal tasks without relying on naive translation. Use when the user wants to benchmark on MMMB, MMBench, or asks about evaluating this task. Reports Accuracy.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add qhjqhj00/research-skills-pool --skill parrot-multilingual-eval --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Parrot Multilingual Eval?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/qhjqhj00-parrot-multilingual-eval)More formats (shields.io, HTML) on the badges page.
---
name: parrot-multilingual-eval
description: Evaluates the multilingual visual-language understanding capabilities of multimodal large language models (MLLMs) across six languages (English, Chinese, Portuguese, Arabic, Turkish, Russian). It probes how well models align visual features with non-English textual instructions and handle cross-lingual multimodal tasks without relying on naive translation. Use when the user wants to benchmark on MMMB, MMBench, or asks about evaluating this task. Reports Accuracy.
metadata:
skill_kind: dataset_eval
source_arxiv: 2406.02539
bibtex_key: sun2024parrot
confidence: high
---
# parrot-multilingual-eval
> Parrot: Multilingual Visual Instruction Tuning — Sun et al. (2024) (arXiv:2406.02539, 2024)
## What this evaluates
Evaluates the multilingual visual-language understanding capabilities of multimodal large language models (MLLMs) across six languages (English, Chinese, Portuguese, Arabic, Turkish, Russian). It probes how well models align visual features with non-English textual instructions and handle cross-lingual multimodal tasks without relying on naive translation.
## Datasets
- **MMMB** — total ?; splits: test (-1)
- **MMBench** — total ?; splits: test (-1)
## Metrics
- `Accuracy` **(primary)** — range: percent
- Percentage of correctly answered questions out of the total number of questions. Calculated as (number of correct predictions / total questions) × 100.
## Input / output format
**Input**: An image paired with a multilingual text prompt or question in one of six languages (English, Chinese, Portuguese, Arabic, Turkish, Russian).
**Output**: Text response (typically multiple-choice selection or descriptive answer) generated by the MLLM.
## Scoring recipe
```python
def compute_accuracy(predictions, gold_labels):
correct = sum(1 for pred, gold in zip(predictions, gold_labels) if pred == gold)
return (correct / len(gold_labels)) * 100
```
## Common pitfalls
- Relying on naive machine translation for non-English queries causes a 'seesaw effect', degrading performance in some languages while improving others.
- Multilingual datasets often suffer from translation noise and class imbalance, which can trigger the 'curse of multilingualism' if not handled carefully.
- Evaluating only on high-resource languages (English/Chinese) masks performance degradation in low-resource settings.
## Evidence (verbatim from paper)
> Table 1: Accuracy performance comparison on multilingual benchmarks. We report all compared methods with VLMEvalKit*(Duan et al., [2024])*. The best and second results are shown in bold and underline, respectively. Our evaluation consists of two parts: one assessing the multilingual capabilities of MLLMs, while the other evaluating its overall performance. The first part is conducted on two datasets: multilingual MMBench*(Liu et al., [2023c])* and a newly developed benchmark MMMB.
## Citation
```bibtex
@misc{sun2024parrot,
title={Parrot: Multilingual Visual Instruction Tuning},
author={Sun et al. (2024)},
year={2024},
note={arXiv:2406.02539}
}
```
- arXiv: 2406.02539
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!