Self-Hinting Language Models Enhance Reinforcement Learning
Baohao Liao, Hanze Dong, Xinxing Xu, Christof Monz, Jiang Bian
TL;DR
This work tackles the GRPO stall that arises under sparse terminal rewards by introducing SAGE, an on-policy reinforcement learning framework that injects privileged hints during training without changing the reward function. Hints are sampled with a tunable strength $\ell$ and appended to the input, with online self-hinting and a policy-dependent scheduler that activates hints only when within-group learning signals collapse, forming an automatic curriculum. The authors analyze GRPO as a gated update driven by the gate probability $u(p)=1-(1-p)^G-p^G$ and the energy $E=s^2/(s+\epsilon)^2$, showing that calibrating $p_\theta(x,h)$ toward $1/2$ yields more non-degenerate updates and better learning. Empirically, SAGE outperforms GRPO and other baselines across six benchmarks and three LLMs, with improved prompt utilization, faster learning on hard prompts, and robust generalization; online self-hinting and policy-dependent scheduling are key contributors. Overall, SAGE provides a scalable, on-policy mechanism to mitigate sparse-reward challenges in verifiable RL for LLMs, enabling more reliable alignment and reasoning capabilities.
Abstract
Group Relative Policy Optimization (GRPO) has recently emerged as a practical recipe for aligning large language models with verifiable objectives. However, under sparse terminal rewards, GRPO often stalls because rollouts within a group frequently receive identical rewards, causing relative advantages to collapse and updates to vanish. We propose self-hint aligned GRPO with privileged supervision (SAGE), an on-policy reinforcement learning framework that injects privileged hints during training to reshape the rollout distribution under the same terminal verifier reward. For each prompt $x$, the model samples a compact hint $h$ (e.g., a plan or decomposition) and then generates a solution $τ$ conditioned on $(x,h)$. Crucially, the task reward $R(x,τ)$ is unchanged; hints only increase within-group outcome diversity under finite sampling, preventing GRPO advantages from collapsing under sparse rewards. At test time, we set $h=\varnothing$ and deploy the no-hint policy without any privileged information. Moreover, sampling diverse self-hints serves as an adaptive curriculum that tracks the learner's bottlenecks more effectively than fixed hints from an initial policy or a stronger external model. Experiments over 6 benchmarks with 3 LLMs show that SAGE consistently outperforms GRPO, on average +2.0 on Llama-3.2-3B-Instruct, +1.2 on Qwen2.5-7B-Instruct and +1.3 on Qwen3-4B-Instruct. The code is available at https://github.com/BaohaoLiao/SAGE.
