🤖 AI Summary
This work addresses the limitation of existing video multimodal large language models, which apply a uniform reasoning strategy to both simple and complex queries, resulting in redundant decoding for easy questions and insufficient reasoning for hard ones. To overcome this, the authors propose AdaThinkV, a framework that jointly optimizes reasoning mode selection and response generation within a single autoregressive sequence via reinforcement learning, without requiring offline labels or external routers. Key innovations include the ThinkGain mechanism, which quantifies the utility of explicit reasoning, and Variance Recovery Policy Optimization (VRPO), an algorithm that recovers effective learning signals from challenging yet solvable samples. Experiments show that AdaThinkV achieves an average accuracy of 40.79 on unified video reasoning benchmarks—2.98 points higher than the strongest adaptive baseline—while reducing token consumption by 22.7% (averaging 257.20 tokens).
📝 Abstract
Chain-of-thought (CoT) reasoning can improve performance on difficult video questions but often wastes decoding tokens on simple ones. We study whether a video multimodal large language model can adapt its reasoning effort to each question. We propose AdaThinkV, an adaptive framework for video reasoning that learns whether to reason explicitly without offline difficulty labels, manually tuned confidence thresholds, or an external router. During reinforcement learning, AdaThinkV samples matched rollouts in explicit reasoning and direct answering modes for each prompt. ThinkGain estimates the prompt-level utility of explicit reasoning by balancing its accuracy gain against additional response length, providing supervision for both conditional response generation and autonomous mode selection. For difficult prompts, limited rollout exploration can yield groups in which every response is unsuccessful and accuracy rewards show little variation, providing insufficient signal for learning. We therefore introduce Variance Recovery Policy Optimization (VRPO), which retains and progressively expands these groups to recover informative signals from prompts that are difficult yet solvable. At inference, AdaThinkV selects a response mode and generates the response in a single autoregressive sequence. Across a unified suite of video reasoning evaluations, AdaThinkV achieves a mean accuracy of 40.79 with an average of 257.20 output tokens, outperforming the strongest evaluated adaptive baseline by 2.98 points while using 22.7% fewer tokens. Project page: https://trilarflagz.github.io/AdaThinkV/