🔥 Accepted to ACM MM 2026

ReGround: Restoring Visual Grounding in Multi-Step Reasoning through Self-Diagnosis and Visual Re-Examination

University of Science and Technology of China (USTC)

† Corresponding authors

Vision-language models gradually lose visual grounding as reasoning chains grow longer. ReGround teaches a model to self-diagnose when visual re-examination is needed and emit a <reground> cue, which re-presents the same visual tokens at new sequence positions so the model can revise its reasoning before answering — no external tools or architectural changes.

Abstract

Vision-Language Models (VLMs) often lose visual grounding during multi-step reasoning: as reasoning chains grow longer, later inference steps rely increasingly on language priors rather than image evidence. We identify a consistent benchmark-level signature associated with this degradation: across 2,510 re-examined samples from four benchmarks, attention entropy over image tokens typically decreases during Round 1 and rises again after the same image is re-injected at a new sequence position.

However, we find that effective visual re-examination requires two complementary ingredients: visual-token re-presentation and targeted self-diagnosis. Without targeted diagnosis, re-examination can even hurt performance, whereas accurate self-diagnosis yields substantial gains — indicating that diagnostic quality is a key factor in whether re-examination helps or hurts.

We present ReGround, a two-stage framework that teaches VLMs to self-diagnose grounding failures and selectively re-examine visual evidence, without architectural modifications or external tools. Through capability bootstrapping, a stronger variant from the same model family provides diagnostic scaffolding only during data construction, while the policy model learns to diagnose autonomously at inference time and retains most of the assisted gains. Experiments on eight benchmarks across two VLM backbones demonstrate consistent gains, particularly on visually intensive multi-step tasks that exhibit grounding drift, while incurring only modest inference overhead relative to tool-augmented baselines.

Key Contributions

📉

Grounding decay & recovery

Across 2,510 samples from four benchmarks, image-token attention entropy narrows in 98.0% of cases during reasoning and usually rebounds after image re-injection.

🎯

Diagnostic quality is the bottleneck

Re-examination without targeted diagnosis can degrade performance. Via capability bootstrapping, the policy recovers 79–90% of the oracle cue’s gains with no inference-time dependency.

⚖️

Triggering policy analysis

Over-triggering actively damages accuracy through negative flips on correct answers, whereas under-triggering is computationally conservative but leaves recoverable errors uncorrected.

🧰

A practical, tool-free framework

Consistent gains across eight benchmarks and two VLM backbones, with no external tools or architectural changes — more efficient than tool-augmented baselines in latency and token cost.

Method

Overview of the ReGround framework: trajectory construction, two-stage training (SFT then GRPO), and two-round inference.
Figure 2. Overview of ReGround. Trajectory construction routes samples through a sequential re-examination trigger; Stage 1 applies cold-start SFT and Stage 2 uses GRPO with a multi-objective reward. At inference, the model autonomously emits a <reground> cue before producing the revised answer.
Stage 1

Cold-start SFT

A trajectory construction pipeline routes each sample into Correction, Grounding, Verification, or No-ReGround modes. Trajectories follow the <think> / <reground> / <answer> format and initialize the policy with visual re-examination capability.

Stage 2

GRPO refinement

Group Relative Policy Optimization with an asymmetric reward (structural re-grounding, post-parser accuracy, format) calibrates the triggering policy without an online model judge.

Results

Per-benchmark dumbbell plot comparing ReGround with Qwen2.5-VL-7B baselines across eight benchmarks.
Each row is scaled to its own min–max range so small gaps stay visible; grey numbers at the ends are absolute scores. Higher is better.

Main results on Qwen2.5-VL-7B

Method MathVista MathVision MathVerse MMBench MMStar Hallus. VisuLogic V*Bench
Base 68.227.035.582.664.764.720.078.2
R1-VL 65.724.737.683.160.068.822.381.2
Thyme 70.027.639.183.465.971.023.483.5
Look-Back 70.828.438.983.966.869.823.882.8
Qwen-LookAgain 69.826.437.882.865.969.222.681.4
ReGround 72.029.840.083.867.671.523.683.2

ReGround attains the best performance on five of eight benchmarks, including all three math-reasoning benchmarks (MathVista +3.8, MathVision +2.8, MathVerse +4.5) and HallusionBench +6.8, while staying within 0.3 points of the strongest baseline on the rest. Gains transfer to a second backbone, Qwen3-VL-8B (+1.1 to +3.4 across all eight benchmarks), without re-tuning.

Efficiency–accuracy trade-off

Method Acc. Total Tokens Calls Time
Baseline61.21163 (1.00×)1.000.79s (1.00×)
Thyme64.71935 (1.66×)1.102.41s (3.05×)
ReGround66.11889 (1.62×)1.341.39s (1.76×)

Sample-count-weighted average over MathVista, MathVision, and HallusionBench (2,255 samples).

BibTeX

@inproceedings{peng2026reground,
  title     = {ReGround: Restoring Visual Grounding in Multi-Step
               Reasoning through Self-Diagnosis and Visual Re-Examination},
  author    = {Peng, Lei and Lv, Shuai and Hu, Wei},
  booktitle = {Proceedings of the 34th ACM International Conference
               on Multimedia (MM '26)},
  year      = {2026},
  eprint    = {2608.04385},
  archivePrefix = {arXiv},
  primaryClass  = {cs.CV}
}

Acknowledgements

This project is built on Qwen2.5-VL, vLLM, and VLMEvalKit. We thank their authors for making their work publicly available.