Research
What Does Vision Tool-Use Reinforcement Learning Really Learn? Disentangling Tool-Induced and Intrinsic Effects for Crop-and-Zoom
Overview Research area: Multimodal AI / Vision-Language Models / Reinforcement Learning for tool use Technical level: Intermediate to Advanced — assumes familiarity with RL post-training, VLMs, and ev
- arXiv
- 2602.01334
- Published
- 2026-02-01
- Authors
- Yan Ma, Weiyu Zhang, Tianle Li, Linge Du, Xuyang Shen, Pengfei Liu
AI summary
Overview
Research area: Multimodal AI / Vision-Language Models / Reinforcement Learning for tool use
Technical level: Intermediate to Advanced — assumes familiarity with RL post-training, VLMs, and evaluation metrics, though the core argument is intuitive.
Scope: A checkpoint-level, attribution-based analysis of what reinforcement learning actually teaches a vision-language model when it is trained to use the crop-and-zoom visual tool across six multimodal benchmarks and two backbones.
What This Paper Is About
Vision tool-use RL — training a vision-language model to call visual operators like crop-and-zoom during decoding — is widely reported to boost multimodal benchmark performance, but it is unclear whether those gains come from better tool use or from the model simply getting smarter in general. This paper separates the two by repeatedly evaluating the same checkpoints with and without tool access during training, and it asks whether RL teaches the model to use tools or merely to tolerate them.
Key Contributions
-
The MED framework (Measure–Explain–Diagnose). A coarse-to-fine attribution framework that separates intrinsic capability drift (measured by tool-free accuracy) from tool-induced drift (measured by the change in the tool-available vs. tool-free gap). It requires only paired tool-free/tool-available evaluations and observable call/no-call behavior.
-
A four-term probabilistic decomposition of the tool-induced gap. The net gap G(t) is decomposed into Call Gain (T1: tool-free failures corrected via calls), Schema Gain (T2: no-call recoveries under tool availability), Call Harm (T3: tool-free successes broken by calls), and Schema Harm (T4: no-call errors under tool availability). This separates gains from harms and call effects from no-call effects.
-
A Mass–Policy–Quality factorization for mechanism diagnosis. Each term is further split into the size of the relevant domain (Mass), the probability of invoking the tool (Policy), and the conditional accuracy given the action (Quality), enabling the authors to distinguish "learning to attempt" from "learning to succeed."
-
Extensive empirical results across two backbone regimes. Checkpoint-level analyses on Qwen2.5-VL (tool-naive) and Qwen3-VL (tool-native) across six benchmarks, showing that tool-induced drift accounts for under 30% of total progress and that RL chiefly reduces harm rather than maximizing gain.
Main Findings
-
Intrinsic drift dominates. The tool contribution ratio S_tool is 0.30 for Qwen2.5-VL and 0.22 for Qwen3-VL. Over 70% of observed learning progress is captured by tool-free accuracy improvement, not by better tool interaction.
-
Tool-reliance diverges by prior familiarity. For the tool-naive Qwen2.5-VL, tool-available drift exceeds tool-free drift (positive relative gain). For the tool-native Qwen3-VL, intrinsic capability improves faster than tool-assisted performance — a "red area" that reflects diminishing reliance on the tool, not forgetting of tool skills.
-
Absolute accuracy still rises monotonically. Both A_w and A_wo increase throughout training for both models; the negative relative drift in Qwen3-VL is a shift in reliance, not a regression.
-
Gross Gain stagnates, Gross Harm declines. Call Gain plateaus or declines, while Call Harm (Qwen3-VL) and Schema Harm (Qwen2.5-VL) both fall consistently. The net gap plateaus because reduced harm is offset by saturated gain.
-
RL suppresses tool-induced errors rather than strengthening correction. The breakage rate P(× | call, D_succ) drops steadily, but the correction rate P(✓ | call, D_fail) shows little improvement on the current failure set or on persistent failures. Improvement appears on the fixed initial failure cohort but does not extend to the hardest cases.
-
Schema interference is actively reduced. Qwen2.5-VL starts sensitive to the tool schema and training drives both Schema Gain and Schema Harm down; Qwen3-VL shows minimal schema effects throughout.
-
Manual failure taxonomy. Of 370 persistent tool-free failures at the final Qwen2.5-VL checkpoint, 271 were no-call (82 judged as clear missed calls) and 99 were call-but-wrong — with 52 wrong crops, 37 correct crops but wrong answers, and 10 correct crops that remained visually hard.
-
Gains align with human logic. Human/AI-agreed judgments on 269 Call Gain samples show >60% human alignment for both models, reaching 93.0% for the tool-native Qwen3-VL.
-
The tool-free reference is validated. No-tool RL with the same pipeline closely tracks the tool-free accuracy of tool-RL (mean gap ~0.017–0.019), supporting A_wo as a practical intrinsic reference. Forcing a schema-shown-but-execution-forbidden baseline reduces accuracy by 5.8–13.0%, arguing against that alternative reference.
Methodology in Plain English
The authors train a vision-language model with GRPO and a simple binary reward based only on final-answer correctness — no tool-use reward shaping, no curriculum. During training they save checkpoints every 80 gradient steps and evaluate each one twice: once with the tool schema removed (tool-free) and once with crop-and-zoom available (tool-available).
They then compare the trajectories of these two accuracy curves. The tool-free curve tracks how much the model improves on its own; the gap between the two curves tracks how much the tool adds. By integrating the absolute area under each curve, they compute a single number — the tool contribution ratio — that says what fraction of total learning is attributable to tool effects.
Next, they partition the test set at each checkpoint into cases the model gets right without tools and cases it gets wrong without tools. Within each partition, they look at whether the model called the tool and whether the final answer was correct, which yields the four-term decomposition. Finally, each term is written as the product of a domain size (Mass), a call probability (Policy), and a conditional accuracy (Quality), letting them trace each factor over time and see whether, for example, a shrinking failure set — rather than worse execution — explains a flat correction rate.
To guard against the moving-target problem (the failure set shrinks and gets harder as training proceeds), they recompute quality on a fixed initial failure cohort and on persistent failures that remain unsolved at the end.
Why This Matters
Research impact. The paper challenges a common assumption in the vision tool-use RL literature: that benchmark gains under tool-available evaluation reflect improved tool competence. It provides a reusable attribution framework that any follow-up work can apply, and it introduces a training-dynamics perspective where call-level faithfulness studies have largely focused on static trace inspection.
Real-world applications:
- Medical and scientific imaging — screening tools that zoom into suspicious regions; knowing whether such a system genuinely uses the tool correctly (rather than just benefiting from a stronger base model) is critical for regulatory confidence.
- Document and chart understanding — assistants that crop dense figures, tables, or small print; the paper's findings suggest such tools may deliver less benefit on hard cases than benchmarks imply.
- Autonomous inspection and robotics — any pipeline where a model decides whether to request a higher-resolution view; the Mass-Policy-Quality factorization offers a way to audit whether failures come from not asking, asking badly, or misusing the result.
- Benchmark design — the results argue for reporting tool-free baselines alongside tool-available scores, since up to 70% of the reported lift can be intrinsic.
Industry relevance. Teams building agentic multimodal products often report metric gains after adding tool-use RL and attribute them to the tool. This paper gives practitioners a lightweight diagnostic — paired evaluations plus a call/no-call accounting — for verifying that claim before shipping. It also suggests that outcome-only rewards may produce models that avoid tool-induced damage rather than ones that exploit tools for hard problems.
Future Directions
-
Can reward shaping unlock genuine failure correction? The authors use only outcome-based reward; whether call-level supervision, utility estimation, or process rewards can push Call Gain quality past its plateau on persistent failures remains open.
-
Does the finding generalize beyond crop-and-zoom? MED only requires paired evaluation and call observability, so it can be applied to code-based vision tools, video operators, or multi-tool agents — but the "coexist rather than master" conclusion may not hold for richer tool sets.
-
How to handle the moving failure set more principledly? The fixed-cohort and persistent-failure controls are partial fixes; a more formal treatment of difficulty drift during RL could change the interpretation of correction-rate trends.
-
Can intrinsic and tool-induced improvements be more cleanly separated? The tool-free protocol is a practical operationalization, not a strict isolation — the authors acknowledge this and validate it with a no-tool RL control, but a proper causal design would strengthen the attribution.
Target Audience
Researchers and engineers working on multimodal reinforcement learning, tool-augmented vision-language agents, and VLM post-training. Also valuable for evaluation/benchmark designers who report tool-available accuracy, and for practitioners deciding whether to invest in tool-use RL versus broader intrinsic capability improvements. Readers should be comfortable with probability decompositions and standard VLM evaluation terminology.
Authors’ abstract
Vision tool-use reinforcement learning (RL) can equip vision language models with visual operators such as crop-and-zoom and achieves strong performance gains, yet it remains unclear whether these gains are driven by improvements in tool use or evolving intrinsic capabilities. We introduce MED (Measure--Explain--Diagnose), a coarse-to-fine framework that disentangles intrinsic capability changes from tool-induced effects, decomposes the tool-induced performance difference into gain and harm terms, and probes the mechanisms driving their evolution. Across checkpoint-level analyses in the crop-and-zoom setting on two VLMs with different tool priors and six benchmarks, we find that improvements are dominated by intrinsic learning, while tool-use RL mainly reduces tool-induced harm (e.g., fewer call-induced errors and weaker tool schema interference) and yields limited progress in tool-based correction of intrinsic failures. Overall, in the crop-and-zoom setting studied here, current vision tool-use RL learns to coexist safely with tools rather than master them.