🤖 AI Summary
This work addresses the computational inefficiency in large language model inference caused by redundant verification and revision steps, a challenge exacerbated by the inability of existing early-exit methods to reliably identify optimal termination points. To tackle this, the authors propose a multi-granularity reasoning boundary detection mechanism that dynamically selects the most informative hidden layer to deploy lightweight, adaptive probes. By integrating calibrated predictions with checkpoint-specific confirmation rules, the method enables early termination of unpromising generation trajectories without compromising accuracy. Experimental results on Qwen3-8B and Qwen3-4B demonstrate substantial improvements in inference efficiency, reducing generated tokens by 24.8% and 15.8%, respectively, while maintaining accuracy nearly on par with the baseline.
📝 Abstract
Large language models often improve task performance by generating long reasoning traces, but the resulting computation is frequently wasted on redundant verification and revision. Existing probe-based early-exit approaches mainly inspect explicit self-doubt expressions, leaving many earlier termination opportunities undetected. Expanding inspection to ordinary reasoning boundaries improves coverage, but also exposes highly diverse intermediate states whose predictive information may reside in different hidden layers. We present Boundary-Expanded and Layer-Adaptive Dynamic Exit for Efficient LLM Reasoning (BLADE), a lightweight framework that dynamically terminates reasoning by estimating whether the generated prefix is sufficient for correct answering. BLADE constructs multi-granular checkpoints from sentence, self-doubt, and paragraph boundaries, and derives robust training labels through repeated answer completions. It further learns a compact subset of informative probe layers instead of relying on fixed choices or expensive representations from all layers. At inference time, calibrated predictions are combined with checkpoint-specific confirmation rules to balance responsiveness and premature-exit risk. Experiments on five benchmarks and two Qwen3 reasoning models show that BLADE preserves near-baseline accuracy while reducing generated tokens by 24.8% on Qwen3-8B and 15.8% on Qwen3-4B. Ablation studies further confirm the benefits of diverse checkpoints and automatic layer selection, demonstrating an effective approach to more efficient LLM reasoning.