multimodal_understanding_eval
InstructVLA: Vision-Language-Action Instruction Tuning from Understanding to Manipulation — Yang et al. (2025) (arXiv:2507.17520, 2025)
What this evaluates
Evaluates a model's ability to understand and reason over diverse visual inputs, including general VQA, document/chart understanding, OCR, and hallucination robustness.
Datasets
- MMMU(Val) — total ?; splits: val (-1)
- MMStar — total ?; splits: test (-1)
- MME — total ?; splits: test (-1)
- OCRBench — total ?; splits: test (-1)
- HallB(Avg) — total ?; splits: test (-1)
- MMB(Dev En V1.1) — total ?; splits: dev (-1)
- TextVQA — total ?; splits: test (-1)
- DoCVQA — total ?; splits: test (-1)
- InfoVQA — total ?; splits: test (-1)
- AI2D — total ?; splits: test (-1)
- ChartQA — total ?; splits: test (-1)
- RWQA — total ?; splits: test (-1)
Metrics
VLMEvalKit score (primary) — range: percent
- Percentage of correctly answered questions or matched options, computed automatically via VLMEvalKit.
Input / output format
Input: Image(s) and text prompt/question.
Output: Text response (answer or reasoning).
Scoring recipe
predictions, gold = load_data(benchmark)
score = sum(1 for p, g in zip(predictions, gold) if p == g) / len(gold) * 100
return score
Common pitfalls
- Benchmarks are evaluated using VLMEvalKit, so manual scoring may differ from reported numbers.
- Some benchmarks like MME and HallB report multiple sub-scores; the paper uses averaged or specific sub-scores (e.g., HallB Avg).
Evidence (verbatim from paper)
We use the automatic evaluation from VLMEvalKit [65] including MMMU(Val) [66], MMStar [67], MME [68], OCRBench [69], HallB(Avg) [70], MMB(Dev En V1.1) [71], TextVQA [72], DoCVQA [73], InfoVQA [74], AI2D [75], ChartQA [76] and RWQA [77].
Citation
@misc{yang2025instructvla,
title={InstructVLA: Vision-Language-Action Instruction Tuning from Understanding to Manipulation},
author={Yang et al. (2025)},
year={2025},
note={arXiv:2507.17520}
}
1---2name: multimodal-understanding-eval3description: Evaluates a model's ability to understand and reason over diverse visual inputs, including general VQA, document/chart understanding, OCR, and hallucination robustness. Use when the user wants to benchmark on MMMU(Val), MMStar, MME, OCRBench, HallB(Avg), MMB(Dev En V1.1), TextVQA, DoCVQA, InfoVQA, AI2D, ChartQA, RWQA, or asks about evaluating this task. Reports VLMEvalKit score.4---56# multimodal_understanding_eval78> InstructVLA: Vision-Language-Action Instruction Tuning from Understanding to Manipulation — Yang et al. (2025) (arXiv:2507.17520, 2025)910## What this evaluates1112Evaluates a model's ability to understand and reason over diverse visual inputs, including general VQA, document/chart understanding, OCR, and hallucination robustness.1314## Datasets1516- **MMMU(Val)** — total ?; splits: val (-1)17- **MMStar** — total ?; splits: test (-1)18- **MME** — total ?; splits: test (-1)19- **OCRBench** — total ?; splits: test (-1)20- **HallB(Avg)** — total ?; splits: test (-1)21- **MMB(Dev En V1.1)** — total ?; splits: dev (-1)22- **TextVQA** — total ?; splits: test (-1)23- **DoCVQA** — total ?; splits: test (-1)24- **InfoVQA** — total ?; splits: test (-1)25- **AI2D** — total ?; splits: test (-1)26- **ChartQA** — total ?; splits: test (-1)27- **RWQA** — total ?; splits: test (-1)2829## Metrics3031- `VLMEvalKit score` **(primary)** — range: percent32 - Percentage of correctly answered questions or matched options, computed automatically via VLMEvalKit.3334## Input / output format3536**Input**: Image(s) and text prompt/question.3738**Output**: Text response (answer or reasoning).3940## Scoring recipe4142```python43predictions, gold = load_data(benchmark)44score = sum(1 for p, g in zip(predictions, gold) if p == g) / len(gold) * 10045return score46```4748## Common pitfalls4950- Benchmarks are evaluated using VLMEvalKit, so manual scoring may differ from reported numbers.51- Some benchmarks like MME and HallB report multiple sub-scores; the paper uses averaged or specific sub-scores (e.g., HallB Avg).5253## Evidence (verbatim from paper)5455> We use the automatic evaluation from VLMEvalKit [65] including MMMU(Val) [66], MMStar [67], MME [68], OCRBench [69], HallB(Avg) [70], MMB(Dev En V1.1) [71], TextVQA [72], DoCVQA [73], InfoVQA [74], AI2D [75], ChartQA [76] and RWQA [77].5657## Citation5859```bibtex60@misc{yang2025instructvla,61 title={InstructVLA: Vision-Language-Action Instruction Tuning from Understanding to Manipulation},62 author={Yang et al. (2025)},63 year={2025},64 note={arXiv:2507.17520}65}66```6768- arXiv: 2507.17520