[π» Github] [π Homepage] [π Main Leaderboard ] [π Open Source Leaderboard ] [πΏ Wild Leaderboard ] [π Visualization] [π Paper]
MATH-Vision-Wild is a photographic, real-world variant of MATH-Vision. The same testmini problems are physically captured on printed paper, iPads, laptops, and projectors under varying lighting and angles β the conditions VLMs actually face when a user holds up a phone to a math problem.
π¦ Dataset: MathLLMs/MathVision-Wild Β· π Leaderboard: mathllm.github.io/mathvision/#wildleaderboard
Key finding β almost every model regresses in the wild:
| Model | MATH-Vision (testmini) | MATH-Vision-Wild | Ξ |
|---|---|---|---|
| o4-mini π₯ | 55.9 | 57.2 | +2.33% (only model to improve) |
| Gemini 2.5 Pro Preview 05-06 (thinking) | 63.8 | 49.0 | β23.20% |
| Gemini 2.5 Flash Preview 05-20 | 57.9 | 48.0 | β17.10% |
| Doubao-1.5-thinking-vision-pro | 57.9 | 45.7 | β21.07% |
| Gemini 2.5 Pro Preview 05-06 | 61.8 | 42.8 | β30.74% |
| GPT-4.1 | 40.5 | 35.5 | β12.35% |
| Qwen2.5-VL-72B-Instruct | 36.2 | 24.0 | β33.70% |
| Gemini 2.0 Flash | 48.0 | 23.0 | β52.08% |
| Gemini 1.5 Pro | 38.8 | 18.4 | β52.58% |
Only o4-mini improves when problems are photographed; long-reasoning models degrade less than fast/non-thinking models. A full 25-model comparison with MATH-Vision-Screenshot and Ξ% columns is on the Wild Leaderboard.
from datasets import load_dataset
wild = load_dataset("MathLLMs/MathVision-Wild", split="testmini_photo")
screenshot = load_dataset("MathLLMs/MathVision-Wild", split="testmini_screenshot")
photo_full = load_dataset("MathLLMs/MathVision-Wild", split="test_photo") # 3,040 photos
from datasets import load_dataset
dataset = load_dataset("MathLLMs/MathVision")
print(dataset)
We would like to thank the following contributors for helping improve the dataset quality:
Recent advancements in Large Multimodal Models (LMMs) have shown promising results in mathematical reasoning within visual contexts, with models approaching human-level performance on existing benchmarks such as MathVista. However, we observe significant limitations in the diversity of questions and breadth of subjects covered by these benchmarks. To address this issue, we present the MATH-Vision (MATH-V) dataset, a meticulously curated collection of 3,040 high-quality mathematical problems with visual contexts sourced from real math competitions. Spanning 16 distinct mathematical disciplines and graded across 5 levels of difficulty, our dataset provides a comprehensive and diverse set of challenges for evaluating the mathematical reasoning abilities of LMMs.
The accuracies of four prominent Large Multimodal Models (LMMs), random chance, and human
performance are evaluated on our proposed MATH-Vision (MATH-V) across 16 subjects.
You can refer to the project homepage for more details.
The leaderboard is available here.
We are commmitted to maintain this dataset and leaderboard in the long run to ensure its quality! π If you find any mistakes, please paste the question_id to the issue page, we will modify it accordingly.
Some examples of MATH-V on three subjects: analytic geometry, topology, and graph theory.
If you find this benchmark useful in your research, please consider citing this BibTex:
@inproceedings{
wang2024measuring,
title={Measuring Multimodal Mathematical Reasoning with MATH-Vision Dataset},
author={Ke Wang and Junting Pan and Weikang Shi and Zimu Lu and Houxing Ren and Aojun Zhou and Mingjie Zhan and Hongsheng Li},
booktitle={The Thirty-eight Conference on Neural Information Processing Systems Datasets and Benchmarks Track},
year={2024},
url={https://openreview.net/forum?id=QWTCcxMpPA}
}
@inproceedings{
wang2025mathcodervl,
title={MathCoder-{VL}: Bridging Vision and Code for Enhanced Multimodal Mathematical Reasoning},
author={Ke Wang and Junting Pan and Linda Wei and Aojun Zhou and Weikang Shi and Zimu Lu and Han Xiao and Yunqiao Yang and Houxing Ren and Mingjie Zhan and Hongsheng Li},
booktitle={The 63rd Annual Meeting of the Association for Computational Linguistics},
year={2025},
url={https://openreview.net/forum?id=nuvtX1imAb}
}
[π» Github] [π Homepage] [π Main Leaderboard ] [π Open Source Leaderboard ] [πΏ Wild Leaderboard ] [π Visualization] [π Paper]
MATH-Vision-Wild is a photographic, real-world variant of MATH-Vision. The same testmini problems are physically captured on printed paper, iPads, laptops, and projectors under varying lighting and angles β the conditions VLMs actually face when a user holds up a phone to a math problem.
π¦ Dataset: MathLLMs/MathVision-Wild Β· π Leaderboard: mathllm.github.io/mathvision/#wildleaderboard
Key finding β almost every model regresses in the wild:
| Model | MATH-Vision (testmini) | MATH-Vision-Wild | Ξ |
|---|---|---|---|
| o4-mini π₯ | 55.9 | 57.2 | +2.33% (only model to improve) |
| Gemini 2.5 Pro Preview 05-06 (thinking) | 63.8 | 49.0 | β23.20% |
| Gemini 2.5 Flash Preview 05-20 | 57.9 | 48.0 | β17.10% |
| Doubao-1.5-thinking-vision-pro | 57.9 | 45.7 | β21.07% |
| Gemini 2.5 Pro Preview 05-06 | 61.8 | 42.8 | β30.74% |
| GPT-4.1 | 40.5 | 35.5 | β12.35% |
| Qwen2.5-VL-72B-Instruct | 36.2 | 24.0 | β33.70% |
| Gemini 2.0 Flash | 48.0 | 23.0 | β52.08% |
| Gemini 1.5 Pro | 38.8 | 18.4 | β52.58% |
Only o4-mini improves when problems are photographed; long-reasoning models degrade less than fast/non-thinking models. A full 25-model comparison with MATH-Vision-Screenshot and Ξ% columns is on the Wild Leaderboard.
from datasets import load_dataset
wild = load_dataset("MathLLMs/MathVision-Wild", split="testmini_photo")
screenshot = load_dataset("MathLLMs/MathVision-Wild", split="testmini_screenshot")
photo_full = load_dataset("MathLLMs/MathVision-Wild", split="test_photo") # 3,040 photos
from datasets import load_dataset
dataset = load_dataset("MathLLMs/MathVision")
print(dataset)
We would like to thank the following contributors for helping improve the dataset quality:
Recent advancements in Large Multimodal Models (LMMs) have shown promising results in mathematical reasoning within visual contexts, with models approaching human-level performance on existing benchmarks such as MathVista. However, we observe significant limitations in the diversity of questions and breadth of subjects covered by these benchmarks. To address this issue, we present the MATH-Vision (MATH-V) dataset, a meticulously curated collection of 3,040 high-quality mathematical problems with visual contexts sourced from real math competitions. Spanning 16 distinct mathematical disciplines and graded across 5 levels of difficulty, our dataset provides a comprehensive and diverse set of challenges for evaluating the mathematical reasoning abilities of LMMs.
The accuracies of four prominent Large Multimodal Models (LMMs), random chance, and human
performance are evaluated on our proposed MATH-Vision (MATH-V) across 16 subjects.
You can refer to the project homepage for more details.
The leaderboard is available here.
We are commmitted to maintain this dataset and leaderboard in the long run to ensure its quality! π If you find any mistakes, please paste the question_id to the issue page, we will modify it accordingly.
Some examples of MATH-V on three subjects: analytic geometry, topology, and graph theory.
If you find this benchmark useful in your research, please consider citing this BibTex:
@inproceedings{
wang2024measuring,
title={Measuring Multimodal Mathematical Reasoning with MATH-Vision Dataset},
author={Ke Wang and Junting Pan and Weikang Shi and Zimu Lu and Houxing Ren and Aojun Zhou and Mingjie Zhan and Hongsheng Li},
booktitle={The Thirty-eight Conference on Neural Information Processing Systems Datasets and Benchmarks Track},
year={2024},
url={https://openreview.net/forum?id=QWTCcxMpPA}
}
@inproceedings{
wang2025mathcodervl,
title={MathCoder-{VL}: Bridging Vision and Code for Enhanced Multimodal Mathematical Reasoning},
author={Ke Wang and Junting Pan and Linda Wei and Aojun Zhou and Weikang Shi and Zimu Lu and Han Xiao and Yunqiao Yang and Houxing Ren and Mingjie Zhan and Hongsheng Li},
booktitle={The 63rd Annual Meeting of the Association for Computational Linguistics},
year={2025},
url={https://openreview.net/forum?id=nuvtX1imAb}
}