Xingjian Wu, Junlin Liu, Xingchen Liu, Xuhang Zhu, Jianing Wang, Linsen Guo, Xiaoyu Li, Xuezhi Cao
A well-executed, timely method paper with a clever contrastive reformulation and broad experiments, but incremental within a crowded self-distillation field and lacking statistical rigor.
Recent advances in post-training Large Language Models (LLMs) increasingly rely on Reinforcement Learning with Verifiable Rewards (RLVR) or On-Policy Self-Distillation (OPSD). While OPSD provides dense, logit-level supervision, it inherently suffers from exposure bias due to the privileged information of the self-teacher. In multi-turn agentic settings, this leads to reasoning route convergence and the loss of clear optimization directions. To tackle these challenges, we introduce Contrastive Reinforced Policy Optimization (CRPO), which reformulates agentic OPSD from a contrastive learning perspective. By leveraging predictive entropy to distinguish between positive positions (reflective exploration) and negative positions (exposure bias), CRPO conducts group-wise contrast to preserve reliable, fine-grained optimization signals. Extensive evaluations across 13 challenging reasoning and deep-search benchmarks demonstrate that CRPO consistently outperforms existing reinforcement learning and self-distillation baselines, significantly enhancing training stability and generalization in long-horizon interactions.
The paper addresses a specific and well-motivated failure mode in On-Policy Self-Distillation (OPSD) for agentic LLM post-training: because the self-teacher enjoys privileged information (reference solutions, environmental feedback), it becomes overconfident precisely at high-uncertainty positions following tool calls, "copying" demonstrated reasoning routes and causing route convergence / exposure bias. The central move is to reframe OPSD as contrastive learning: student and privileged contexts are two "views," the shared policy is the encoder, output logits are representations, and negative KL is the similarity. An entropy-gap "judger" then labels positions as positive (reflective exploration, distill toward teacher) or negative (exposure bias, push away), with an InfoNCE objective performing group-wise contrast. This is a genuinely clever reinterpretation that converts a uniform imitation loss into a selectively gated one, and it comes with a theoretical result (Proposition 1) showing the gradient reduces to a contrastively reweighted per-token policy gradient with signed "soft gates."
The empirical design is quite strong: five backbones (Qwen2.5-3B/7B, Llama3.1-8B, Qwen3-8B/14B), 13 benchmarks spanning math, multi-hop QA, and deep search, and four baseline families including the immediate predecessors (OPSD, SDPO, RLSD) and strong agentic RL baselines (GRPO, ARPO). Ablations are appropriate and target the key claims: hyperparameter sweeps that show boundary cases collapsing to OPSD (p→100) and GRPO (λ→0), a positive-only vs. full-contrast ablation isolating the value of negative-pair repulsion, rollout-size sensitivity, training-dynamics curves (entropy/KL/accuracy/tool-calls), and a Pass@k analysis. The Appendix D.1 statistical validation of teacher entropy collapse (binned by distance to tool-call boundary, plus token word-clouds) elevates the "phenomenon" claims from anecdote to evidence. The theoretical appendices (top-K KL/entropy bounds, trust-region self-teacher with EMA surrogate) are competently derived.
The main gaps: no error bars, variance estimates, or significance tests on any table despite small benchmarks (AIME24/25 have only 30 problems each, where single-run swings are large). The entropy-gap threshold and Bottom-p% partitioning are heuristics whose robustness across tasks is only partially probed. Improvements on some math splits (e.g., MATH500, GSM8K) over strong baselines are marginal, and the headline gains concentrate in deep-search settings.
The topic sits at the center of current LLM post-training research — RLVR, on-policy distillation, and agentic multi-turn RL. The method is practical: it reuses the same forward passes already needed for the entropy judger (comparable wall-clock to ARPO), and it is orthogonal to GRPO, offered as a drop-in regularizer swap (CRPO*). The demonstration that 8B/14B CRPO* models beat 32B direct-reasoning baselines on GAIA is an attractive selling point for industrial deployment (this is a Meituan paper, suggesting production motivation). This is the kind of method that a meaningful slice of the post-training community could adopt or extend, though it competes in an extremely crowded space (the related-work section cites roughly a dozen concurrent 2026 self-distillation variants — RLSD, SDAR, Skill-SD, RLCSD, HDPO, etc.), which both validates timeliness and dilutes distinctiveness.
Highly timely. Exposure bias in self-distillation and long-horizon credit assignment in agentic RL are active bottlenecks. The contrastive framing is a fresh angle in a field currently dominated by KL-based and reward-modulated distillation.
Strengths: clear and well-diagnosed problem; elegant contrastive reformulation with matching theory; broad empirical coverage; convincing mechanistic evidence (entropy collapse localized to a "copy phase" 10–30 tokens after tool calls, corroborated by token-level lexical analysis); orthogonality to outcome-level RL.
Limitations: absence of statistical rigor (no seeds/variance); heavy reliance on heuristic thresholds; the "contrastive" reframing is arguably a re-derivation of selective gating rather than a fundamentally new learning principle; heavy compute barrier (16 H800 GPUs); no code release stated; and a dense literature of near-identical concurrent methods makes long-term differentiation uncertain. Reproducibility is aided by detailed hyperparameters and pseudocode but hampered by proprietary infrastructure and unreleased code.
The theoretical contribution is real but modest — Proposition 1 is a policy-gradient re-expression, and the top-K bounds (Prop 4/5) are standard. The EMA/trust-region self-teacher is borrowed from prior work. The paper's value is primarily as a well-engineered, empirically validated method rather than a conceptual breakthrough. Its foundationality is moderate: others could reuse the entropy-gap judger and contrastive gating as a component, but it is unlikely to become a named primitive given the density of competitors.
Overall, this is a solid, above-average method paper: a clever framing, a well-supported diagnosis, and consistent (if not always dramatic) gains, tempered by missing statistical rigor and a crowded competitive field.
Generated Jul 31, 2026
A well-executed, timely method paper with a clever contrastive reformulation and broad experiments, but incremental within a crowded self-distillation field and lacking statistical rigor.