[CVPR 2025] HART: Breaking Resolution Constraints in LMMs via Annotation-Free RL

Annotation-Free Visual Reasoning for High-Resolution Large Multimodal Models via Reinforcement Learning

Summary
Problem
Method
Results
Takeaways
Abstract

This paper introduces HART (High-resolution Annotation-free Reasoning Technique), an RL-based closed-loop framework for improving high-resolution visual reasoning in Large Multimodal Models (LMMs). It employs a novel reinforcement learning strategy, AP-GRPO, to optimize visual grounding and reasoning without requiring costly human-annotated bounding box labels, setting new SOTA benchmarks for open-source 7B-class models.

TL;DR

Current Large Multimodal Models (LMMs) are often "blinded" by high-resolution inputs, struggling with an explosion of redundant tokens. HART (High-resolution Annotation-free Reasoning Technique) introduces a closed-loop reinforcement learning framework that teaches models to "zoom in" on critical image regions. Remarkably, it requires zero human-annotated bounding boxes, yet allows a 7B model to outperform 72B giants on vision-centric benchmarks by self-verifying its own visual attention.

The Motivation: The "Right Answer, Wrong Reason" Trap

In high-resolution tasks (like reading a tiny sign in a 4K street view), most visual tokens are noise. While we want models to first "ground" (locate) the target and then "reason," training this usually requires expensive human labels.

The authors identified a critical flaw in existing RL-based grounding: Reward Misspecification. In pilot tests with Qwen2.5-VL and InternVL3, they found that even when models gave the correct answer, their internal "eye" was looking at the wrong part of the image 58% to 90% of the time. Essentially, the models were "guessing" correctly based on context rather than seeing.

Optimization Procedures Comparison

Methodology: HART and the Power of Self-Verification

HART acts like a strict teacher. It follows a two-step process:

  1. Grounding: The model predicts a Region of Interest (ROI) based on a low-res version of the image.
  2. Verifiable Reasoning: The full image is hidden. The model is given only the high-res crop of its predicted ROI.

If the model can answer the question correctly using only that crop, it proves the grounding was "faithful." This creates a "closed-loop" where the answer correctness serves as a direct proxy for grounding quality.

AP-GRPO: Better Math for Better Sight

To stabilize this, the authors improved the Group Relative Policy Optimization (GRPO) algorithm. Their version, AP-GRPO (Advantage Preference GRPO), adds a dynamic weight (). It prioritizes updates for samples where both grounding and reasoning are correct, effectively filtering out the "lucky guesses" that plague standard RL training.

The HART Framework Architecture

Experiments: Small Model, Huge Results

HART was tested on grueling high-resolution benchmarks like MME-RealWorld and TreeBench.

  • SOTA Performance: HART-7B achieved 62.4% on MME-RealWorld-Lite. For context, Qwen2.5-VL-72B (10x larger) only scored 43.7%.
  • Domain Gains: The model saw massive jumps in specialized fields: +26.0% in Remote Sensing and +27.7% in Autonomous Driving perception.
  • Grounding Accuracy: Even without box-labels during training, HART's grounding (IoU) outperformed the best previous RL methods by over 5.5%.

Main Performance Table

Visualization: Seeing is Believing

The difference is clear when looking at the model's "thought process." In tasks requiring identification of specific people or small objects, base models like InternVL3 often focus on the center of the image (a common bias), whereas HART successfully shifts its focus to the "right-most man" or specific text cues required by the prompt.

Visualization of Model Outputs

Critical Insights & Future Work

HART proves that Interpretable Reasoning Pathways are more valuable than raw parameter counts. By forcing the model to "explain" its answer through a specific visual crop, we get both better performance and a window into why the model made its decision.

Limitations:

  • Inference Speed: The two-turn "ground-then-reason" process is slower than a single pass.
  • Scale: The current work focuses on 7B-8B models. Scaling this to 70B+ models could potentially unlock even higher levels of visual intelligence.

In conclusion, HART is a significant step toward "Human-like" vision for AI: moving from processing every pixel to intelligently glancing at what matters.

Find Similar Papers

Try Our Examples

  • Search for recent papers using reinforcement learning to optimize visual grounding in large multimodal models without using bounding-box annotations.
  • Which paper first introduced the Group Relative Policy Optimization (GRPO) algorithm, and how does the Advantage Preference (AP) modification in this study change its mathematical objective?
  • Examine how the HART framework's "withholding full image" strategy could be applied to video-based multimodal reasoning or long-context document understanding.
Contents
[CVPR 2025] HART: Breaking Resolution Constraints in LMMs via Annotation-Free RL
1. TL;DR
2. The Motivation: The "Right Answer, Wrong Reason" Trap
3. Methodology: HART and the Power of Self-Verification
3.1. AP-GRPO: Better Math for Better Sight
4. Experiments: Small Model, Huge Results
5. Visualization: Seeing is Believing
6. Critical Insights & Future Work