Skip to content

Multimodal benchmarks

The multimodal benchmark family

Vision-language models have their own benchmark ecosystem. The major ones in 2026:

BenchmarkWhat it tests
MMMUMulti-discipline college-level vision-language reasoning
MMMU-ProThe harder successor
MathVistaMath problems with diagrams, charts, geometry
ChartQAChart and graph comprehension
DocVQADocument understanding (forms, scans, PDFs)
OCRBenchLow-level OCR capability
VQAv2Classic visual question answering (older, mostly saturated)
MMVetIntegration of core vision capabilities
AI2DDiagram understanding (grade-school science)
MathVerseMathematical reasoning with visual input

Why multimodal benchmarks exist

The vision-language gap (2021-2022). Early vision-language models (CLIP, DALL-E, Flamingo) could do image captioning and visual question answering at a surface level. “What is in this image?” was solvable. “Look at this circuit diagram and compute the output voltage” was not. VQAv2 (the dominant benchmark of the era) was saturating on surface-level tasks while deeper visual reasoning remained unmeasured.

MMMU (2023): college-level vision. The MMMU authors took the MMLU recipe (exam-level questions across many domains) and added images. A chemistry question that requires reading a molecular diagram is harder than the same question stated in text, because the model must parse a visual representation before reasoning. MMMU was created to test whether vision-language models could pass college exams that require both visual and domain-specific knowledge simultaneously.

MathVista (2023): the diagram reasoning gap. MathVista was motivated by a specific observed failure: GPT-4V could solve algebra problems stated in text but failed the same problems stated as geometry diagrams. Reading a diagram correctly (identifying angles, labels, relationships) requires different processing than reading prose. MathVista isolated this gap.

ChartQA (2022): business document understanding. Charts and graphs are ubiquitous in real business documents. A model deployed on financial analysis needs to read a bar chart, not just the data table underneath it. ChartQA was created specifically for this use case: extraction and reasoning over chart-based visual data.

DocVQA (2020): the OCR + layout problem. Scanned documents (invoices, contracts, forms) are a practical deployment target for AI. OCR alone (extract text from image) is not sufficient; layout understanding (which field label corresponds to which value?) is also necessary. DocVQA was created to evaluate this combination.

MMMU, Massive Multi-discipline Multimodal Understanding

  1. 11,500 college-exam-level questions across 30 disciplines, each with one or more images. Subjects span art, business, health, humanities, sciences, tech.

What it measures. Image + text reasoning at college level.

Saturation. Top models in the 70-80% range (April 2026). MMMU itself is largely saturated for leading models.

MMMU-Pro. 2024 successor. Stricter filtering, vision-only variants (no text cues), harder overall. Frontier models in the 60-70% range. Still differentiates.

MMMU example questions

Example 1 (Art History):

Monet, Impression soleil levant (1872). Broken brushstrokes, visible texture, and light over form, the defining visual markers of Impressionism. Public domain.

Based on the visual evidence in the image, this work is most consistent with which art movement? (A) Neoclassicism   (B) Impressionism   (C) Abstract Expressionism   (D) Photorealism

For a human with art education: immediately recognizable as Impressionism from the broken brushwork, visible texture, and light-over-form emphasis. For a model: requires reading the visual properties and connecting them to the correct movement, not just recognizing the word “Impressionism” anywhere in the text.

Example 2 (Medicine/Radiology):

Chest X-ray showing right-sided lobar pneumonia with consolidation and blurring of the hemidiaphragm border. Dr. Mikael Häggström, CC0.

There is increased opacity in the right lower lobe with blurring of the right hemidiaphragm border. The trachea appears midline. Based on these findings, what is the most likely diagnosis? (A) Pneumothorax   (B) Right lower lobe pneumonia   (C) Pleural effusion   (D) Right-sided atelectasis

The key visual finding is blurring of the hemidiaphragm with preserved trachea position. Pleural effusion would shift the trachea; pneumothorax shows hyperlucency rather than opacity. The model must integrate what it sees with clinical radiology knowledge to pick (B).

Example 3 (Engineering/Circuits):

+--------[ R1 = 4Ω ]--------+
| |
(+) ─────+ +───── (-)
12V | |
+--------[ R2 = 2Ω ]--------+

What is the total current drawn from the source? (A) 1.5A   (B) 3A   (C) 4.5A   (D) 6A

Working from the diagram: parallel resistance = (4 × 2) / (4 + 2) = 4/3 Ω. Total current = 12V / (4/3) = 9A. That is not one of the options. This is exactly where models fail on MMMU: misreading the circuit (are R1 and R2 in parallel or series? is 12V the source or a label for something else?) produces a wrong starting value, and the model picks a plausible-looking wrong answer.

MathVista

  1. Mathematical reasoning requiring visual understanding: geometry problems, function plots, chart-based math, tables.

What it measures. The intersection of visual-spatial reasoning and arithmetic. Exposes a common blind spot: models can solve an algebra problem, but struggle when the same problem is presented as a geometry diagram.

Current state. Top reasoning models 65-80% range. Older non-reasoning models significantly lower.

MathVista example questions

Example 1 (Geometry from diagram):

*
|\
| \
| \ legs: 6 (vertical), 8 (horizontal)
6 (r) \ hypotenuse: 10
| \ inscribed circle: touches all three sides
| \
*────8──────*

What is the radius of the inscribed circle?

Working: for a right triangle with legs a, b and hypotenuse c, the inradius r = (a + b - c) / 2. Here a = 6, b = 8, c = 10 (Pythagorean triple). r = (6 + 8 - 10) / 2 = 2.

The model must (1) identify the right triangle from the image, (2) read the labels correctly, (3) recognize the inscribed circle formula or derive it from area / perimeter: area = 24, perimeter = 24, r = 2 × area / perimeter = 48 / 24 = 2. Models that can do this algebra but misread the leg labels from the diagram fail.

Example 2 (Chart-based math):

Annual Revenue ($M) [each row = $1M]
────────────────────────────────────────────────
$22 ┤ ██
$21 ┤ ██
$20 ┤ ██
$19 ┤ ██
$18 ┤ ██ ██
$17 ┤ ██ ██
$16 ┤ ██ ██
$15 ┤ ██ ██ ██
$14 ┤ ██ ██ ██
$13 ┤ ██ ██ ██
$12 ┤ ██ ██ ██ ██
$11 ┤ ██ ██ ██ ██ ██
$10 ┼─██───────██───██───────██──────────────██─
2019 2020 2021 2022 2023

What was the average annual growth rate from 2019 to 2023?

Working: from 12Mto12M to 22M over 4 years. CAGR = (22/12)^(1/4) - 1 = (1.833)^0.25 - 1 = approximately 16.4%.

The failure mode: models often compute simple average growth ((22 - 12) / 12 / 4 = 20.8%) instead of compound annual growth rate. Or they misread the bars (is the 2023 bar exactly 22M,or22M, or 21.5M?). The visual ambiguity in reading bar heights is a systematic MathVista weakness.

ChartQA

Chart-and-graph question answering. Bar charts, line charts, pie charts, “what was the revenue in Q2?” kind of questions.

Why it matters. Charts are ubiquitous in business and science, and they’re a known failure mode. A model may read a table of numbers fine but fail to extract numbers from a chart of the same data.

Saturation. Approaching but not fully saturated. Top models 85-90%.

ChartQA example questions

Example 1 (direct retrieval):

Market Share by Company
──────────────────────────────────────────────────
Company A ████████████████████████████████████ 35%
Company B ████████████████████████████ 28%
Company C ██████████████████████ 22%
Company D ███████████████ 15%

What percentage of market share does Company B hold?

Answer: 28%. This is the easy end of ChartQA, direct label reading. Frontier models score ~99% on this type. ChartQA’s difficulty comes from the harder variants below.

Example 2 (comparison requiring visual estimation):

Quarterly Revenue ($M): Company A vs Company B
──────────────────────────────────────────────────────────────────
$22 ┤ A
$20 ┤ A A
$18 ┤ A A A
$16 ┤ A ╳ B B B
$15 ┤ B ╳
$14 ┤ B B
$12 ┤ B
└───────────────────────────────────────────────────────────
Q1 Q2 Q3 Q4 Q1 Q2 Q3 Q4 Q1 Q2 Q3 Q4
────── 2020 ────── ────── 2021 ────── ────── 2022 ──────
↑cross 1 ↑cross 2

During how many quarters did Company A exceed Company B?

The model must count quarters, track which line is which across both crossings, and handle each crossing correctly. Across 12 data points with 2 crossings, each crossing segment requires determining which company is higher. Error rate increases with number of crossings and chart density.

Example 3 (calculation from stacked bar):

Annual Energy Consumption by Source (Exajoules, approximate)
─────────────────────────────────────────────────────────────────────────────────
Year Coal Oil Nat. Gas Renewables
───── ────────────────── ────────────────── ────────────────── ────────────────────────
2022 ████████████ ████████████████ ████████████████ █████████████████████
2021 █████████████ ████████████████ ████████████████ ████████████████
2020 █████████████ ███████████████ ████████████████ ████████████
2019 █████████████ ████████████████ ███████████████ ██████████
2018 ██████████████ ████████████████ ██████████████ ████████
2015 ████████████████ ████████████████ █████████████ ██████
─────────────────────────────────────────────────────────────────────────────────
↓ declining → stable ↑ growing ↑↑ tripled

By what percentage did renewable energy’s share of total energy increase from 2015 to 2022?

This requires reading two stacked bar heights (renewable slice in 2015, renewable slice in 2022), dividing each by the total bar height to get share percentages, then computing the percentage-point change. Each step introduces visual estimation error. This is where even frontier models average 75-80% accuracy rather than ~100%.

  • DocVQA: question answering over scanned documents.
  • InfographicVQA: harder; complex designed infographics with text + images + icons.
  • TextVQA: short text within natural images.

These exercise OCR + layout + reasoning together. Models good at pure OCR (good text extraction) but bad at layout reasoning fail; so do the reverse.

DocVQA concrete examples

Example 1 (scanned form):

HOMEOWNERS INSURANCE POLICY
────────────────────────────────────────────────────
Policyholder: Jane M. Doe
Policy No.: HO-2024-88347
Issue Date: 03/01/2023
Effective Date: 03/15/2023
Start Date: 03/15/2023
Expiration: 03/15/2024
Property: 1424 Elm Street, Springfield, IL 62704
Coverage: [x] Dwelling [x] Personal Property [ ] Liability
Annual Premium: $1,248.00
────────────────────────────────────────────────────

What is the policy effective date listed on this form?

The model must locate and read the correct date field. The difficulty here is that “Issue Date,” “Effective Date,” and “Start Date” all appear on the same form with the same value format. DocVQA’s OCR component is mostly solved by frontier models (90%+ accuracy). The harder cases are when the right field label is ambiguous.

Example 2 (layout + reasoning):

NOTES TO CONSOLIDATED FINANCIAL STATEMENTS
Note 1 - Basis of Presentation ........ 14
Note 2 - Summary of Significant
Accounting Policies ......... 15
Note 3 - Revenue Recognition .......... 17 <-- locate this
Note 4 - Leases ........................ 19
...
NOTE 3 - REVENUE RECOGNITION
The Company recognizes revenue in accordance with
Accounting Standards Codification Topic 606,
"Revenue from Contracts with Customers" (ASC 606),
as issued by the Financial Accounting Standards
Board (FASB). Revenue is recognized when, or as,
performance obligations are satisfied.

According to footnote 3, what accounting standard was used for the revenue recognition policy?

The model must: (1) locate Note 3 visually in a multi-column document with small footnote text, (2) OCR it correctly, (3) identify the specific accounting standard. The answer is ASC 606. This combines OCR, layout understanding, and semantic understanding of accounting terminology.

OCRBench

Specifically tests OCR capability in isolation: transcription of text from images, including weird fonts, rotated text, mathematical notation, multi-language.

Why it matters. A prerequisite for DocVQA. Weak OCR guarantees weak DocVQA.

MMVet, MMBench

Broader vision-language evaluation frameworks aggregating multiple capabilities (recognition, OCR, knowledge, math, spatial reasoning). Used for broad model cards rather than single-number comparisons.

Video benchmarks

  • Video-MME: broad video understanding (short to long clips).
  • MVBench: 20 video tasks spanning action, scene, object, and attribute understanding.
  • LongVideoBench: long-form video question answering (hour-plus videos).

Video benchmarks lag image benchmarks, the models are weaker, the benchmarks are less mature, and compute costs are prohibitive.

Audio benchmarks

  • AudioBench: audio question answering.
  • MMAU: multimodal audio understanding.

Still early in development. Most “multimodal” claims in 2026 are primarily vision-language; audio is catch-up.

Embodied / spatial benchmarks

  • SpatialBench, MindCube: 3D and embodied spatial reasoning.
  • RoboBench: robot-task completion from visual input.

Emerging category. Frontier models struggle; benchmark-gaming is less of a concern because they’re hard to saturate.

Performance summary table

BenchmarkFrontier score (Apr 2026)Saturation stateKey failure mode
MMMU~80%Near saturatedSubject-specific knowledge integration
MMMU-Pro~65%Active differentiatorVision-only variants expose text-leakage
MathVista~75%Active differentiatorVisual estimation + formula recall
ChartQA~90%Near saturatedMulti-step chart calculations
DocVQA~93%Near saturatedAmbiguous field labels
MMVet~70%Active differentiatorMulti-capability integration
Video-MME (long)~55%HardTemporal reasoning across long clips
OSWorld (agent, visual)~38-44%Very hardGUI navigation + visual control

How vision-language models advanced

Dual-encoder models (2021): CLIP. CLIP trained an image encoder and a text encoder jointly so that matching image-text pairs had similar embeddings. This enabled zero-shot image classification and visual search. But CLIP could not reason: it could tell you “this image is similar to the text ‘a red car’” but could not answer “what color is the car in this image?” CLIP was a retrieval model, not a reasoning model.

Cross-attention vision-language models (2022): Flamingo. Flamingo (DeepMind, 2022) used cross-attention layers to inject visual features into a pretrained language model. A frozen language model saw the image features as additional context. This enabled few-shot visual QA: show the model three examples of (image, question, answer) and it generalizes to new images. MMMU-class questions were too hard for Flamingo but the architecture was the right direction.

Instruction-tuned vision models (2023): LLaVA, GPT-4V. LLaVA (Liu et al., 2023) connected a CLIP image encoder to a Llama language model via a simple projection layer, then instruction-tuned the combination on visual instruction data. This was cheap to produce and competitive with much larger proprietary models. GPT-4V (OpenAI, 2023) was a proprietary version of the same concept at scale, with RLHF applied on top. Both showed large gains on MMMU and MathVista compared to prior models.

Native multimodal pretraining (2024): Gemini. Gemini 1.0 was the first large model trained natively on interleaved text, image, audio, and video data from the beginning of pretraining, rather than adapting a text model to vision post-hoc. Native multimodal training produced better visual reasoning because the model’s representations were built jointly rather than bridged by a projection layer. MMMU scores crossed 60% with Gemini-class models.

High-resolution and fine-grained vision (2024-2025). Diagrams, charts, and technical documents require fine-grained visual parsing: reading small numbers in a chart, distinguishing similar symbols in a circuit diagram, reading handwritten text. Models trained on higher-resolution image crops and fine-tuned on document-specific data improved ChartQA and DocVQA substantially. Resolution is a practical bottleneck: most vision models downsample images to 224x224 pixels, which loses legibility for small text.

Reasoning mode applied to vision (2025). The same RL-trained reasoning that improved math benchmarks improved visual reasoning on MathVista and MMMU-Pro. The model can now reason: “the graph appears to cross zero at x~2.5; let me verify by extrapolating from the nearby labeled points.” This added ~10-20 points on hard multimodal benchmarks. ChartQA and DocVQA (which are closer to retrieval than reasoning) benefited less.

What multimodal benchmarks don’t measure

  • Diagram generation. Most benchmarks test understanding; creating clean diagrams is an orthogonal skill.
  • Interactive manipulation. Benchmarks mostly use static images; real use involves screenshots that change.
  • Video generation quality. Video-MME tests understanding, not generation.
  • Cross-modal reasoning at scale. Combining image + audio + text in one task is barely benchmarked.
  • Grounded interaction. “Point to the button”, barely tested.

Reading multimodal scores

Pure vision vs VQA

A model may ace VQAv2 (classic visual QA) and fail MMMU. The former is closer to “object recognition”; the latter is “reason about what you see.” Different capabilities.

Text-in-image leakage

Some “vision” tasks become text tasks if the model does OCR and then reasons from the extracted text. MMMU-Pro includes vision-only variants specifically to catch this.

Context-length interactions

Some multimodal benchmarks now include long-form documents with many pages. Scores here couple vision ability with long-context ability.

Reasoning-mode multiplier

Same as every other benchmark: reasoning-mode variants score ~15-25 points higher on hard multimodal reasoning.

The current state of the art (April 2026)

Frontier multimodal models (GPT-5.x vision, Gemini 3.x, Claude 4.x vision):

  • MMMU ~80%: closing on saturation.
  • MMMU-Pro ~65%: still differentiates.
  • MathVista ~75% with reasoning.
  • ChartQA ~90%: nearly saturated.
  • DocVQA ~93%: nearly saturated.

The frontier is shifting toward:

  • Longer videos (an hour+ of footage).
  • Agentic multimodal: a model using a browser with screenshots in the loop.
  • High-resolution technical diagrams (engineering drawings, scientific figures).
  • 3D / spatial.

References