chart-reasoning-eval
CharTool: Tool-Integrated Visual Reasoning for Chart Understanding — Situo Zhang et al. (arXiv:2604.02794, 2026)
What this evaluates
Evaluates a model's ability to understand complex chart visualizations and perform fine-grained visual grounding and numerical reasoning. It probes both in-domain chart comprehension across real-world and synthetic datasets, and out-of-domain generalization to visual mathematical reasoning tasks.
Datasets
- CharXiv — total ?; splits: test (-1)
- ChartQAPro — total ?; splits: test (-1)
- ChartQA — total ?; splits: test (-1)
- ChartBench — total ?; splits: test (-1)
- ChartX — total ?; splits: test (-1)
- ReachQA — total ?; splits: test (-1)
- MathVista — total ?; splits: test (-1)
- WeMath — total ?; splits: test (-1)
- MathVerse — total ?; splits: test (-1)
Metrics
accuracy (primary) — range: percent
- Standard exact-match or normalized string matching accuracy calculated per sub-task (reasoning, description, recognition, etc.) and averaged across benchmarks. Formula: (Number of correct predictions / Total number of predictions) * 100.
Input / output format
Input: A chart image (bar, line, pie, scatter, or multi-subplot scientific figures) paired with a natural language question or query.
Output: Natural language text containing step-by-step reasoning and a final answer.
Scoring recipe
def compute_accuracy(predictions, gold_answers):
correct = 0
for pred, gold in zip(predictions, gold_answers):
if normalize_answer(pred) == normalize_answer(gold):
correct += 1
return (correct / len(predictions)) * 100
Common pitfalls
- Benchmarks report multiple sub-task scores (e.g., reasoning, description, recognition); averaging them without explicit weighting can obscure performance on specific capabilities.
- Out-of-domain benchmarks (MathVista, WeMath, MathVerse) test general visual/math reasoning rather than chart-specific skills, so direct score comparison with chart benchmarks is misleading.
- The paper uses GPT-5.2 for dataset quality evaluation, which is separate from the model evaluation protocol and should not be conflated with the main accuracy metrics.
Evidence (verbatim from paper)
We conduct a comprehensive evaluation of our models across a diverse set of standard chart benchmarks, categorized into: (1) Real-world Benchmarks, comprising charts extracted from real-world sources, including CharXiv, ChartQAPro, and ChartQA; and (2) Synthetic Benchmarks, containing synthesized images or queries: ChartBench, ChartX, and ReachQA. Furthermore, to assess the out-of-domain generalization capabilities of our approach, we include three visual math reasoning benchmarks: MathVista, WeMath, and MathVerse.
Citation
@misc{zhang2026chartool,
title={CharTool: Tool-Integrated Visual Reasoning for Chart Understanding},
author={Situo Zhang et al.},
year={2026},
note={arXiv:2604.02794}
}
1---2name: chart-reasoning-eval3description: Evaluates a model's ability to understand complex chart visualizations and perform fine-grained visual grounding and numerical reasoning. It probes both in-domain chart comprehension across real-world and synthetic datasets, and out-of-domain generalization to visual mathematical reasoning tasks. Use when the user wants to benchmark on CharXiv, ChartQAPro, ChartQA, ChartBench, ChartX, ReachQA, MathVista, WeMath, MathVerse, or asks about evaluating this task. Reports accuracy.4---56# chart-reasoning-eval78> CharTool: Tool-Integrated Visual Reasoning for Chart Understanding — Situo Zhang et al. (arXiv:2604.02794, 2026)910## What this evaluates1112Evaluates a model's ability to understand complex chart visualizations and perform fine-grained visual grounding and numerical reasoning. It probes both in-domain chart comprehension across real-world and synthetic datasets, and out-of-domain generalization to visual mathematical reasoning tasks.1314## Datasets1516- **CharXiv** — total ?; splits: test (-1)17- **ChartQAPro** — total ?; splits: test (-1)18- **ChartQA** — total ?; splits: test (-1)19- **ChartBench** — total ?; splits: test (-1)20- **ChartX** — total ?; splits: test (-1)21- **ReachQA** — total ?; splits: test (-1)22- **MathVista** — total ?; splits: test (-1)23- **WeMath** — total ?; splits: test (-1)24- **MathVerse** — total ?; splits: test (-1)2526## Metrics2728- `accuracy` **(primary)** — range: percent29 - Standard exact-match or normalized string matching accuracy calculated per sub-task (reasoning, description, recognition, etc.) and averaged across benchmarks. Formula: (Number of correct predictions / Total number of predictions) * 100.3031## Input / output format3233**Input**: A chart image (bar, line, pie, scatter, or multi-subplot scientific figures) paired with a natural language question or query.3435**Output**: Natural language text containing step-by-step reasoning and a final answer.3637## Scoring recipe3839```python40def compute_accuracy(predictions, gold_answers):41 correct = 042 for pred, gold in zip(predictions, gold_answers):43 if normalize_answer(pred) == normalize_answer(gold):44 correct += 145 return (correct / len(predictions)) * 10046```4748## Common pitfalls4950- Benchmarks report multiple sub-task scores (e.g., reasoning, description, recognition); averaging them without explicit weighting can obscure performance on specific capabilities.51- Out-of-domain benchmarks (MathVista, WeMath, MathVerse) test general visual/math reasoning rather than chart-specific skills, so direct score comparison with chart benchmarks is misleading.52- The paper uses GPT-5.2 for dataset quality evaluation, which is separate from the model evaluation protocol and should not be conflated with the main accuracy metrics.5354## Evidence (verbatim from paper)5556> We conduct a comprehensive evaluation of our models across a diverse set of standard chart benchmarks, categorized into: (1) Real-world Benchmarks, comprising charts extracted from real-world sources, including CharXiv, ChartQAPro, and ChartQA; and (2) Synthetic Benchmarks, containing synthesized images or queries: ChartBench, ChartX, and ReachQA. Furthermore, to assess the out-of-domain generalization capabilities of our approach, we include three visual math reasoning benchmarks: MathVista, WeMath, and MathVerse.5758## Citation5960```bibtex61@misc{zhang2026chartool,62 title={CharTool: Tool-Integrated Visual Reasoning for Chart Understanding},63 author={Situo Zhang et al.},64 year={2026},65 note={arXiv:2604.02794}66}67```6869- arXiv: 2604.02794