Evaluates multimodal large language models across six domains: reasoning & math, text-rich image understanding, multi-image comprehension, general VQA, hallucination mitigation, and multilingual capability. It probes the model's ability to process visual contexts, perform complex reasoning, extract text, and answer questions accurately across diverse real-world scenarios. Use when the user wants to benchmark on Multimodal Benchmark Suite (32 datasets), or asks about evaluating this task. Repo...
Scanned 9/11/2026
Install to Claude Code
npx -y skills add qhjqhj00/research-skills-pool --skill multimodal-eval-suite-eval --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Multimodal Eval Suite Eval?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/qhjqhj00-multimodal-eval-suite-eval)More formats (shields.io, HTML) on the badges page.
---
name: multimodal-eval-suite-eval
description: Evaluates multimodal large language models across six domains: reasoning & math, text-rich image understanding, multi-image comprehension, general VQA, hallucination mitigation, and multilingual capability. It probes the model's ability to process visual contexts, perform complex reasoning, extract text, and answer questions accurately across diverse real-world scenarios. Use when the user wants to benchmark on Multimodal Benchmark Suite (32 datasets), or asks about evaluating this task. Reports Average accuracy / ANLS across 32 benchmarks.
metadata:
skill_kind: dataset_eval
source_arxiv: 2510.11496
bibtex_key: jin2025andesvl
confidence: high
---
# multimodal-eval-suite-eval
> AndesVL Technical Report: An Efficient Mobile-side Multimodal Large Language Model — Jin et al. (2025) (arXiv:2510.11496, 2025)
## What this evaluates
Evaluates multimodal large language models across six domains: reasoning & math, text-rich image understanding, multi-image comprehension, general VQA, hallucination mitigation, and multilingual capability. It probes the model's ability to process visual contexts, perform complex reasoning, extract text, and answer questions accurately across diverse real-world scenarios.
## Datasets
- **Multimodal Benchmark Suite (32 datasets)** — total ?; splits: test (-1)
## Metrics
- `Average accuracy / ANLS across 32 benchmarks` **(primary)** — range: percent
- Arithmetic mean of per-benchmark scores (accuracy, ANLS, relaxed accuracy, or worst-case accuracy) across six domains and an overall aggregate.
## Input / output format
**Input**: Image(s) and text prompt/question per instance.
**Output**: Text answer generated by the model.
## Scoring recipe
```python
scores = []
for benchmark in benchmarks:
preds = model.generate(image, prompt)
gold = benchmark.answers
score = compute_metric(preds, gold, metric=benchmark.metric) # accuracy, ANLS, etc.
scores.append(score)
overall = sum(scores) / len(scores)
```
## Common pitfalls
- Scores for many baseline models are taken from original papers or the OpenCompass leaderboard rather than re-evaluated.
- Different benchmarks use different metrics (accuracy, ANLS, relaxed accuracy, worst-case accuracy) which are averaged directly without normalization.
- Evaluation is primarily conducted using VLMEvalKit, which may introduce framework-specific inference settings.
## Evidence (verbatim from paper)
> The accuracy results achieved from the model’s direct answer on its validation set are recorded. We compute the average scores, drawn from the models’ original papers or the OpenCompass leaderboard, to represent their capabilities across specific domains and overall.
## Citation
```bibtex
@misc{jin2025andesvl,
title={AndesVL Technical Report: An Efficient Mobile-side Multimodal Large Language Model},
author={Jin et al. (2025)},
year={2025},
note={arXiv:2510.11496}
}
```
- arXiv: 2510.11496
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!