Papers
Topics
Authors
Recent
Search
2000 character limit reached

Learning Adaptive Reasoning Paths for Efficient Visual Reasoning

Published 16 Apr 2026 in cs.CV and cs.CL | (2604.14568v1)

Abstract: Visual reasoning models (VRMs) have recently shown strong cross-modal reasoning capabilities by integrating visual perception with language reasoning. However, they often suffer from overthinking, producing unnecessarily long reasoning chains for any tasks. We attribute this issue to \textbf{Reasoning Path Redundancy} in visual reasoning: many visual questions do not require the full reasoning process. To address this, we propose \textbf{AVR}, an adaptive visual reasoning framework that decomposes visual reasoning into three cognitive functions: visual perception, logical reasoning, and answer application. It further enables models to dynamically choose among three response formats: Full Format, Perception-Only Format, and Direct Answer. AVR is trained with FS-GRPO, an adaptation of Group Relative Policy Optimization that encourages the model to select the most efficient reasoning format while preserving correctness. Experiments on multiple vision-language benchmarks show that AVR reduces token usage by 50--90\% while maintaining overall accuracy, especially in perception-intensive tasks. These results demonstrate that adaptive visual reasoning can effectively mitigate overthinking in VRMs. Code and data are available at: https://github.com/RunRiotComeOn/AVR.

Authors (3)

Summary

  • The paper proposes the AVR framework, which adaptively selects among full, perception-only, and direct answer formats to optimize visual reasoning.
  • It demonstrates a 50โ€“90% token reduction on benchmarks while maintaining or boosting accuracy in diverse VQA tasks.
  • The FS-GRPO reinforcement strategy incentivizes concise, correct responses, effectively preventing overthinking in multimodal models.

Learning Adaptive Reasoning Paths for Efficient Visual Reasoning

Motivation and Problem Statement

Visual reasoning models (VRMs) integrate visual perception and language reasoning for complex multimodal tasks such as visual question answering (VQA). Recent advances enable these models to mimic human-like chains of thought (CoT), yet they often suffer from overthinkingโ€”the tendency to generate unnecessarily verbose reasoning paths, which inflate computational cost and sometimes introduce errors. This is largely attributed to Reasoning Path Redundancy, where multiple cognitive stages (e.g., perception, reasoning, answer) are invoked even when parsimonious responses suffice.

Statistical analysis confirms the prevalence of this inefficiency: in Qwen3-VL-4B-Thinking, over one third of questions (36.7%) can be answered without explicit reasoning, and 32.1% can be answered directly without perception or reasoning, yet existing models indiscriminately employ full CoT for all inputs. The Overthinking Score (mean token length ratio of original to compressed correct responses) underscores this pattern, with a substantial fraction of outputs exhibiting marked redundancy.

These findings motivate a paradigm shiftโ€”away from monolithic reasoning pipelines toward adaptive, task-sensitive cognitive strategies capable of contextually selecting reasoning paths for efficiency without compromising accuracy.

AVR: Adaptive Visual Reasoning Framework

The proposed AVR (Adaptive Visual Reasoning) framework structurally decomposes the VRM pipeline into three cognitive functions:

  • Visual Perception: extraction of relevant visual facts from the image,
  • Logical Reasoning: inference and multi-step deduction over perceived facts,
  • Answer Application: mapping inferred results to final answer formats.

Three corresponding response formats are defined:

  1. Full Format: includes all stages (<perception>โ€ฆ<reasoning>โ€ฆ<answer>),
  2. Perception-Only Format: skips reasoning, retaining only perception and answer,
  3. Direct Answer: answers without any intermediate justification.

AVR employs a two-stage training regime:

  • Stage 1 (SFT): Multi-format Supervised Fine-Tuning exposes the model to diverse format annotations, ensuring competence in all predefined formats.
  • Stage 2 (RL): Format-Selection Group Relative Policy Optimization (FS-GRPO) incentivizes both accuracy and format efficiency. The RL reward combines answer correctness, conciseness (length regularization), and format diversity (to prevent collapse to a single format). Figure 1

    Figure 2: Training dynamics of response format usage during FS-GRPO reinforcement learning, highlighting the effect of diversity reward on maintaining adaptive format selection.

FS-GRPOโ€™s reward function incorporates:

  • Format reward: rewards concise, correct answers more,
  • Diversity reward: mitigates format collapse (i.e., the model always picking the shortest path),
  • Length penalty: adjusts for verbosity via a dynamic tolerance threshold.

Experimental Results and Analysis

Benchmarks and Metrics

AVR is evaluated across multiple VQA and multimodal reasoning benchmarks, stratified by perceptual, logical, and general complexity. Metrics comprise both accuracy and token count (response length).

Key comparative baselines include:

  • Thinking models (always full CoT),
  • Instruct models (SFT only, variable format),
  • SOTA selective reasoning methods (Think-or-Not [TON], ARM2).

Efficiency and Performance

AVR consistently achieves a 50โ€“90% reduction in token consumption while maintaining or exceeding the accuracy of baseline thinking models. Noteworthy trends include:

  • On perception-intensive tasks (e.g., OCRBench, TextVQA), AVR saves over 80% tokens and improves accuracy (up to +6.6%) compared to full reasoning.
  • On reasoning-heavy tasks (e.g., MathVista), AVR adaptively defaults to full-format responses, preserving accuracy while improving efficiency.
  • On general benchmarks, token savings are commensurately significant without accuracy loss.

AVR also outperforms TON and ARM2, providing stronger accuracyโ€“efficiency trade-offs due to its multi-format design and adaptive format policy. Figure 3

Figure 4: FS-GRPO training dynamics indicate steady increases in mean reward and answer accuracy, confirming stable and effective optimization of adaptive reasoning policies.

Adaptive Format Allocation

Detailed format distribution analysis demonstrates that AVR dynamically matches response format to task requirements:

  • Perception-intensive tasks: strong preference for direct-answer or perception-only formats,
  • Reasoning-intensive tasks: majority full-format usage,
  • Mixed tasks: balanced allocation across all three, depending on complexity.

This validates the hypothesis that task-aware path selection optimally balances cost and performance, preventing both under- and over-reasoning.

Ablations and Sensitivity

Ablation studies confirm:

  • The necessity of all three formats for optimal efficiencyโ€“accuracy tradeoff,
  • The vital role of diversity reward in preventing collapse to overly terse formats,
  • Robustness of AVRโ€™s gains to reasonable hyperparameter variations (length tolerance and format bonus magnitudes).

Broader Implications and Future Directions

AVR advances VRM efficiency by reconciling the need for deep compositional reasoning with the practical imperative for cost-effective inference. The frameworkโ€™s structured decomposition and reinforcement approach highlight several important implications:

  • Modular format design enables interpretability and introspection into model reasoning decisions.
  • Adaptive reasoning policies address overthinking, facilitate deployment in resource-constrained environments, and reduce inference latency and energy usage.
  • The FS-GRPO framework provides a generalizable foundation for selective reasoning and could inform the design of future RL-based optimization for language and multimodal models.

Further investigation may explore:

  • Finer-grained reasoning decomposition (beyond three formats),
  • Real-time dynamic format selection at inference,
  • Transferability across tasks and domains,
  • Integration with explanation and verification modules for trustworthy AI.

Conclusion

AVR introduces an adaptive approach to visual reasoning by structuring and training VRMs to select among multiple cognitive paths based on task demands. Through multi-format SFT and a format-aware RL objective, AVR achieves significant inference cost reduction with maintained or improved accuracy, generalizing across scales and model families. This establishes adaptive, modular reasoning as a critical driver for efficient and robust multimodal systems (2604.14568).

Paper to Video (Beta)

No one has generated a video about this paper yet.

Whiteboard

No one has generated a whiteboard explanation for this paper yet.

Open Problems

We haven't generated a list of open problems mentioned in this paper yet.

Collections

Sign up for free to add this paper to one or more collections.