HyperAIHyperAI

Command Palette

Search for a command to run...

Perceive-to-Reason: Entkopplung von Wahrnehmung und Schlussfolgern für feinkörniges visuelles Denken

Zusammenfassung

Feinkörniges visuelles Denken bleibt für Vision-Language-Modelle eine Herausforderung, insbesondere wenn kleine, aber entscheidende visuelle Hinweise in hochauflösenden Bildern verborgen sind. Bestehende Ansätze setzen auf wiederholtes Zuschneiden oder testzeitliche visuelle Suche, um lokale Evidenz einzubringen, unterscheiden jedoch typischerweise nicht explizit zwischen Wahrnehmung und Schlussfolgern. In dieser Arbeit schlagen wir Perceive-to-Reason (P2R) vor, ein einheitliches Rahmenwerk, das feinkörniges visuelles Denken als zweistufigen Prozess formuliert: Das Modell lokalisiert zunächst frage-relevante Evidenz als Perceiver und beantwortet dann die Frage als Reasoner auf Basis des annotierten Bildes und der zugeschnittenen Regionen. Um das Training besser mit dieser entkoppelten Formulierung abzustimmen, führen wir zusätzlich Perception-Reasoning Alternating GRPO (PRA-GRPO) ein, eine rollenbewusste Verstärkungslernstrategie, die zwischen wahrnehmungsund schlussfolgerungsfokussierten Aktualisierungen wechselt und dabei ausschließlich die Endantwort-Überwachung nutzt. Aufbauend auf Qwen3-VL-Instruct-2B/4B/8B verbessert P2R die Leistung konsistent über Modellgrößen hinweg. Insbesondere erreicht P2R-4B 93,2 % auf V-Star, 81,9 % auf HR-Bench-4K und 80,5 % auf HR-Bench-8K und übertrifft damit das entsprechende Backbone deutlich. Weitere Experimente zeigen, dass die Vorteile von P2R über hochauflösende Benchmarks hinaus auf breitere multimodale Denkaufgaben übertragbar sind. Diese Ergebnisse deuten darauf hin, dass die explizite Entkopplung von Wahrnehmung und Schlussfolgern ein effektives Rahmenwerk für feinkörniges visuelles Denken bietet.

One-sentence Summary

Researchers from Zhejiang University and Alibaba Group propose Perceive-to-Reason (P2R), which decouples fine-grained visual reasoning into explicit perception and reasoning stages, and PRA-GRPO, a role-aware reinforcement learning strategy that alternates perception-focused and reasoning-focused updates under final-answer supervision; unlike prior work that merges these stages, P2R built upon Qwen3-VL-Instruct models attains state-of-the-art performance on V-Star and HR-Bench.

Key Contributions

  • P2R is a unified framework that formulates fine-grained visual reasoning as a two-stage perceive-to-reason process, explicitly decoupling evidence localization (Perceiver) from answer generation (Reasoner).
  • PRA-GRPO is a role-aware reinforcement learning strategy that aligns training with the decoupled formulation by alternating perception-focused and reasoning-focused updates, using only final-answer supervision without ground-truth bounding box annotations.
  • Built on Qwen3-VL-Instruct models at 2B, 4B, and 8B scales, P2R achieves consistent and substantial gains, including 93.2% on V-Star and 81.9%/80.5% on HR-Bench-4K/8K for the 4B variant, and its benefits extend beyond high-resolution benchmarks to broader multimodal reasoning tasks.

Introduction

Vision-language models (VLMs) now perform well on broad visual understanding tasks, but fine-grained visual reasoning, such as reading dense text or interpreting precise spatial relations, remains difficult. A diagnostic experiment reveals that poor perception is a major bottleneck: simply providing oracle bounding boxes lifts a baseline model’s accuracy on V-Star from 81.7% to 90.6%, showing that many failures come from not locating the right evidence. Prior work addresses this by interleaving region exploration with reasoning or by relying on complex test-time search pipelines, but these approaches either entangle evidence localization with the answer generation process or externalize it in a way that makes “where to look” decisions hard to optimize directly.

The authors propose Perceive-to-Reason (P2R), a framework that explicitly decomposes fine-grained visual reasoning into two stages: a Perceiver first localizes question-relevant regions, and then a Reasoner produces the answer using the annotated image and cropped evidence. To train this decoupled setup under only final-answer supervision, they introduce PRA-GRPO, a reinforcement learning strategy that alternates between perception-focused and reasoning-focused optimization while freezing the other role’s parameters. This role-aware alternation converts a single correctness signal into a more attributable training signal for each stage, removing the need for ground-truth bounding boxes and enabling the model to learn better where to look and how to reason.

Method

The authorspropose P2R, a unified framework that formulates fine-grained visual reasoning as a perceive-to-reason process. It consists of two tightly coupled components: a two-stage inference paradigm that explicitly separates evidence localization and answer generation, and PRA-GRPO, a role-aware reinforcement learning strategy that aligns training with this decoupled formulation.

In the inference stage, the model structures fine-grained visual reasoning into two consecutive phases: perception and reasoning, using a single underlying VLM with shared parameters θ\thetaθ.

As shown in the figure above, the first stage involves the model acting as a Perceiver. Given an image-question pair (I,Q)(I, Q)(I,Q), the Perceiver makes an explicit localization decision for the visual evidence most relevant to the question. Let Q~p=Tp(Q)\tilde{Q}_p = \mathcal{T}_p(Q)Q~p=Tp(Q) denote a perception-oriented prompt. The Perceiver predicts a set of bounding boxes B={Bk}k=1K\mathcal{B} = \{B_k\}_{k=1}^KB={Bk}k=1K as: Bπp(I,Q~p;θ)\mathcal{B} \sim \pi_p(\cdot \mid I, \tilde{Q}_p; \theta)Bπp(I,Q~p;θ) where each Bk=(x1,y1,x2,y2)B_k = (x_1, y_1, x_2, y_2)Bk=(x1,y1,x2,y2) specifies a rectangular region. These predicted boxes are transformed into two complementary visual inputs: an annotated image Ia=annotate(I,B)I_a = \text{annotate}(I, \mathcal{B})Ia=annotate(I,B) where boxes are overlaid on the original image, and cropped evidence images Ic=crop(I,B)I_c = \text{crop}(I, \mathcal{B})Ic=crop(I,B) containing the local regions.

In the second stage, the model acts as a Reasoner to generate the final answer YYY: Yπr(Ia,Ic,Q;θ)Y \sim \pi_r(\cdot \mid I_a, I_c, Q; \theta)Yπr(Ia,Ic,Q;θ) This formulation turns fine-grained visual reasoning into an explicitly structured process where the Perceiver determines where to look and the Reasoner focuses on how to reason from the evidence.

Training this decoupled formulation is challenging because the final prediction depends on both stages, and supervision is only available at the final answer level. To address this, the authors propose PRA-GRPO, a role-aware reinforcement learning strategy that aligns optimization with the perceive-to-reason structure.

The core idea is to convert final answer correctness into a more attributable training signal by alternating between perception-focused and reasoning-focused updates. PRA-GRPO alternates between optimizing the Perceiver and the Reasoner while keeping the other role fixed.

In the perception phase, the quality of predicted evidence is evaluated through the answer produced by a fixed Reasoner. Given an image-question-answer triplet (I,Q,Y)(I, Q, Y)(I,Q,Y), the model samples a group of GGG rollouts of bounding boxes Biπp(I,Tp(Q);θ)\mathcal{B}_i \sim \pi_p(\cdot \mid I, \mathcal{T}_p(Q); \theta)Biπp(I,Tp(Q);θ). Based on Bi\mathcal{B}_iBi, the annotated image IaiI_a^iIai and cropped images IciI_c^iIci are constructed and fed into the fixed Reasoner to obtain the final answer YiY_iYi.

In the reasoning phase, answer generation is optimized conditioned on evidence provided by a fixed Perceiver. The output oio_ioi is an answer Yiπr(Ia,Ic,Q;θ)Y_i \sim \pi_r(\cdot \mid I_a, I_c, Q; \theta)Yiπr(Ia,Ic,Q;θ), where (Ia,Ic)(I_a, I_c)(Ia,Ic) are constructed from the bounding boxes predicted by the fixed Perceiver.

To keep supervision minimal and task-agnostic, a binary reward is defined based solely on final answer correctness: ri=I[Yi=Y]r_i = \mathbb{I}[Y_i = Y]ri=I[Yi=Y] The group-relative advantage is computed following GRPO: Ai=rimean({rj}j=1G)std({rj}j=1G)+ϵA_i = \frac{r_i - \text{mean}(\{r_j\}_{j=1}^G)}{\text{std}(\{r_j\}_{j=1}^G) + \epsilon}Ai=std({rj}j=1G)+ϵrimean({rj}j=1G) The active role ϕ{p,r}\phi \in \{p, r\}ϕ{p,r} is optimized using the standard GRPO objective: JGRPOϕ(θ)=Ex,{oi}i=1G[1Gi=1Gmin(ρiAi,clip(ρi,1±ε)Ai)βKL[πϕ,θπref]]\mathcal{J}_{\text{GRPO}}^\phi(\theta) = \mathbb{E}_{x, \{o_i\}_{i=1}^G} \left[ \frac{1}{G} \sum_{i=1}^G \min\left(\rho_i A_i, \text{clip}(\rho_i, 1 \pm \varepsilon) A_i\right) - \beta \text{KL}[\pi_{\phi, \theta} \| \pi_{\text{ref}}] \right]JGRPOϕ(θ)=Ex,{oi}i=1G[G1i=1Gmin(ρiAi,clip(ρi,1±ε)Ai)βKL[πϕ,θπref]] where ρi=πϕ,θ(oix)πϕ,θold(oix)\rho_i = \frac{\pi_{\phi, \theta}(o_i \mid x)}{\pi_{\phi, \theta_{\text{old}}}(o_i \mid x)}ρi=πϕ,θold(oix)πϕ,θ(oix). Specifically, x=(I,Tp(Q))x = (I, \mathcal{T}_p(Q))x=(I,Tp(Q)) and oi=Bio_i = \mathcal{B}_ioi=Bi in the perception phase, while x=(Ia,Ic,Q)x = (I_a, I_c, Q)x=(Ia,Ic,Q) and oi=Yio_i = Y_ioi=Yi in the reasoning phase. This allows perception to be learned from downstream reasoning outcomes through final-answer supervision alone.

Experiment

The evaluation setup compares P2R against general-purpose VLMs, visual search, and thinking-with-images methods on high-resolution fine-grained benchmarks (V-Star, HR-Bench) and a broader real-world benchmark (MME-RealWorld-Lite). P2R consistently improves over Qwen3-VL-Instruct backbones across all scales, with gains spanning perception and reasoning subtasks particularly in challenging high-resolution scenarios. Ablations validate that the perceive-to-reason inference decomposition is beneficial, and alternating role-aware training with the Perceiver phase first yields the best performance by enabling more accurate evidence localization before reasoning. Further analysis shows cross-role knowledge transfer under shared parameters, zero-shot gains on reasoning grounding, and faster learning scaling driven by mutual reinforcement between perception and reasoning.

P2R models consistently outperform their corresponding Qwen3-VL-Instruct baselines on fine-grained visual reasoning benchmarks, with average gains of 8.1, 11.0, and 9.7 points for the 2B, 4B, and 8B scales. Improvements are most pronounced on the high-resolution HR-Bench-8K, highlighting the effectiveness of the perceive-to-reason formulation in demanding settings. Among open-source models, P2R-8B achieves the best averaged performance across the three evaluated benchmarks. P2R variants surpass Qwen3-VL-Instruct at every model scale, yielding average improvements of 8.1 (2B), 11.0 (4B), and 9.7 (8B) percentage points. Gains are largest on HR-Bench-8K, indicating that the perceive-to-reason approach is especially beneficial for challenging high-resolution visual reasoning. P2R-8B attains the highest average performance among all open-source models on V-Star, HR-Bench-4K, and HR-Bench-8K.

On the MME-RealWorld-Lite benchmark, P2R models consistently surpass their Qwen3-VL-Instruct baselines, with overall gains of 4.0%, 7.1%, and 7.0% for the 2B, 4B, and 8B variants. These improvements are broad, appearing across nearly all perception and reasoning subtasks, demonstrating that the perceive-to-reason framework benefits general multimodal understanding beyond high-resolution scenarios. P2R-8B achieves the highest overall performance among all compared methods. P2R-2B, P2R-4B, and P2R-8B improve overall accuracy over their respective Qwen3-VL-Instruct baselines by 4.0, 7.1, and 7.0 percentage points. Performance gains are spread across nearly all perception and reasoning subcategories rather than being concentrated in a few areas. P2R-8B attains the best overall score among all listed models, outperforming prior specialized approaches such as DeepEyes-7B. The baseline Qwen3-VL-Instruct models show limited scaling (from 47.3 at 2B to 52.3 at 32B), whereas P2R's enhancements yield larger relative jumps at each scale.

Shared parameters enable cross-role transfer: a checkpoint trained only as a perceiver boosts reasoning when reused as a reasoner, and vice versa. Combining separately trained perceiver and reasoner checkpoints reaches 84.8% average, but the full alternating training method yields 85.2%, showing better integration. The design uses a single model for both roles, simplifying deployment. Using a perceiver-only checkpoint as both perceiver and reasoner improves the average over using it just as perceiver with a base reasoner, revealing that perceiver training transfers to reasoning. A reasoner-only checkpoint applied to both roles outperforms the base perceiver paired with that reasoner checkpoint, confirming that reasoner training also benefits perception. The highest average score is achieved by the final jointly trained model, surpassing even the best mix of independently trained perceiver and reasoner roles. All three fine-grained visual reasoning benchmarks—V-Star, HR-4K, and HR-8K—show gains when role-specific training is applied to the complementary role.

On the reasoning grounding benchmark ReasonSeg, the P2R-4B model trained with PRA-GRPO outperforms its base model on both test and validation splits, even though it never received grounding-specific data or bounding box annotations. The results indicate that the fine-grained visual reasoning training transfers to improved localization of query-relevant evidence. P2R-4B achieves an average accuracy gain of 1.1 percentage points over the baseline. The improvement is larger on the validation split (+1.8) than on the test split (+0.5). The model relies solely on answer-level supervision from visual reasoning data, with no access to grounding annotations.

Across fine-grained visual reasoning benchmarks and the MME-RealWorld-Lite suite, P2R models consistently outperform their Qwen3-VL-Instruct baselines at every scale, with the largest gains on high-resolution tasks, and P2R-8B attains top open-source performance. Ablation studies on cross-role transfer demonstrate that a single model jointly trained to alternate between perceiver and reasoner roles achieves better integration than combining separately trained checkpoints, and that training one role transfers benefits to the other. Furthermore, P2R's fine-grained reasoning training improves grounding on ReasonSeg without any grounding-specific supervision, highlighting the broad transferability of the perceive-to-reason framework.


KI mit KI entwickeln

Von der Idee bis zum Launch – beschleunigen Sie Ihre KI-Entwicklung mit kostenlosem KI-Co-Coding, sofort einsatzbereiter Umgebung und bestem GPU-Preis.

KI-gestütztes kollaboratives Programmieren
Sofort einsatzbereite GPUs
Die besten Preise

HyperAI Newsletters

Abonnieren Sie unsere neuesten Updates
Wir werden die neuesten Updates der Woche in Ihren Posteingang liefern um neun Uhr jeden Montagmorgen
Unterstützt von MailChimp