Paper: 2604.14142 Authors: Yuqiao Tan, Minzheng Wang, Bo Liu, Zichen Liu, Tian Liang, Shizhu He, Jun Zhao, Kang Liu Categories: cs.LG, cs.AI, cs.CL

The Gap

Current reinforcement learning for LLM reasoning (RLVR) optimizes P(y|x) — the probability of output y given input x. This works when the base model already knows how to reason but just needs alignment. The problem: if the base model’s output distribution doesn’t cover correct reasoning paths, no amount of conditional optimization will discover them. You’re rearranging furniture in a house with no foundation.

Pre-training could fix this by expanding P(y), but traditional pre-training uses static datasets and passive learning. It’s like trying to teach someone chess by showing them random games instead of letting them learn from their mistakes.

Problem: RLVR hits ceiling
    |
    v
Observation: P(y|x) bounded by base P(y)
    |
    v
Hypothesis: Optimize P(y) directly with RL
    |
    v
Method: PreRL (pre-train space RL) + NSR (negative sample reinforcement)
    |
    v
Evidence: 14.89x more transitions, 6.54x more reflections
    |
    v
Conclusion: Prune wrong paths first, then fine-tune

The Increment

One sentence: Before this paper, RL for reasoning meant polishing what the model already knew; after, it means expanding the reasoning space first by teaching the model what NOT to do.

Core Mechanism

PreRL applies RL directly to the marginal distribution P(y) during pre-training, not the conditional P(y|x) during fine-tuning. The key insight: gradients of log P(y) and log P(y|x) align strongly, so optimizing P(y) is a valid surrogate for standard RL.

Within PreRL, Negative Sample Reinforcement (NSR) gives negative rewards to incorrect reasoning paths. This isn’t just penalizing wrong answers — it’s actively pruning the reasoning tree. When the model generates a wrong solution, NSR pushes down its probability, forcing the model to explore alternative paths. This triggers endogenous reflection: the model starts generating “wait, that’s wrong” thoughts and backtracking steps.

The full system, Dual Space RL (DSRL), uses a two-phase approach: Phase 1 runs NSR-PreRL to expand the reasoning horizon and prune bad paths. Phase 2 initializes from this pruned space and runs standard RL for fine-grained optimization. Think of it as Policy Reincarnation — the model dies, learns what killed it, and respawns smarter.

Input x --> [Base Model] --> Initial P(y)
                                  |
                                  v
                    [NSR-PreRL: Negative Reinforcement]
                    Prune wrong paths, expand exploration
                                  |
                                  v
                            Expanded P(y)
                                  |
                                  v
                    [Standard RL: Positive Refinement]
                    Polish correct reasoning paths
                                  |
                                  v
                            Final P(y|x)

Structural metaphor: Think of reasoning space as a forest with many trails. Standard RL is like hiring a guide to show you the best trail — but only among trails the guide already knows. PreRL is like burning down the poison ivy and clearing brush before the guide arrives. NSR is the controlled burn: you deliberately set small fires on bad trails (negative reinforcement) so they become impassable. The forest doesn’t shrink — it reorganizes. Dead-end trails disappear, and new paths emerge where the undergrowth cleared. When the guide (standard RL) finally arrives, they’re working with a forest that’s been pre-shaped for navigation.

Key Concepts

  • Pre-train Space vs Fine-tune Space: Pre-train space optimizes P(y) — the model’s raw ability to generate any output, independent of input. Fine-tune space optimizes P(y|x) — how well outputs match specific inputs. The difference: P(y) is about what the model CAN say; P(y|x) is about what it SHOULD say given context. If your model can’t generate correct reasoning at all (low P(y) for correct paths), no amount of input conditioning will help. It’s like trying to teach someone to write poetry in a language they don’t speak — you need vocabulary (P(y)) before you can teach style (P(y|x)).

  • Negative Sample Reinforcement (NSR): Standard RL gives positive rewards for correct outputs. NSR gives negative rewards for incorrect outputs. The asymmetry matters: positive reinforcement says “do more of this,” but the model might not know what “this” generalizes to. Negative reinforcement says “don’t do THIS specific wrong thing,” which is more precise. Example: if a model solves 2+2=5, NSR doesn’t just say “wrong” — it penalizes the entire reasoning chain that led to 5, making the model less likely to use that chain again. This creates pressure to explore alternatives, like a maze-solver who marks dead ends.

  • Gradient Alignment: The paper proves that ∇log P(y) and ∇log P(y|x) point in similar directions. Why does this matter? It means optimizing P(y) (easier, no input conditioning needed) approximately optimizes P(y|x) (what we actually want). It’s like training a runner on a treadmill (P(y)) instead of an outdoor track (P(y|x)) — the mechanics transfer even though the context differs. This justifies using PreRL as a surrogate for standard RL.

Framework Shift

Before (Standard RLVR):              After (DSRL):

Input x                              Input x
  |                                    |
  v                                    v
[Base Model P(y|x)]                [Base Model P(y)]
  |                                    |
  v                                    v
[RL: Reward correct y]               [NSR-PreRL: Punish wrong y]
  |                                  (Prune reasoning space)
  v                                    |
Optimized P(y|x)                       v
(bounded by base)                  Expanded P(y)
                                       |
                                       v
                                   [Standard RL: Reward correct y|x]
                                   (Refine within pruned space)
                                       |
                                       v
                                   Optimized P(y|x)
                                   (unbounded by original base)

One sentence: From polishing a fixed reasoning space to first expanding and pruning that space, then polishing.

Expert Assessment

Problem choice: Real gap. The observation that RLVR is bounded by base model capabilities is empirically obvious but theoretically underexplored. The field has been throwing more compute at fine-tuning without questioning whether the base distribution is adequate. This paper asks the right question.

Method maturity: NSR is elegant — negative reinforcement for reasoning is underused despite being standard in other RL domains. The gradient alignment proof is solid but not groundbreaking (it’s a consequence of the chain rule). The two-phase DSRL approach feels slightly ad-hoc; why not interleave NSR and positive RL? The paper doesn’t explore this design space.

Experimental integrity: Baselines are fair (standard RLVR, vanilla pre-training). The 14.89x increase in transition thoughts is striking, but the paper doesn’t show failure cases or discuss when NSR might over-prune. The experiments focus on math reasoning; generalization to other domains is unclear. One red flag: no ablation on the phase transition timing — when should you stop NSR and start standard RL?

Writing quality: The abstract oversells (“exceptionally effective driver”). Section 3’s theoretical analysis is dense and could use more intuition before formalism. The NSR mechanism is buried in Section 4 when it should be front and center. If the authors rewrote Section 2 to lead with the forest metaphor instead of equations, the paper would be far more accessible.

Verdict: weak accept — solid idea with good empirical results, but the method feels like it’s still finding its final form. The NSR insight is worth publishing, but the paper needs another iteration to clarify design choices and failure modes.

Takeaways

For practitioners: If you’re fine-tuning a model for reasoning and hitting a performance ceiling, try this: before standard RL, run a phase where you explicitly penalize incorrect reasoning chains (not just wrong answers). Track whether the model starts generating more backtracking or self-correction tokens — that’s a signal the reasoning space is expanding.

For researchers: The gradient alignment between P(y) and P(y|x) suggests a broader principle: you can optimize simpler distributions as proxies for complex conditional distributions if their gradients align. This could apply beyond reasoning — anywhere you have expensive conditional optimization, check if marginal optimization is a viable surrogate.

Transferable technique: Negative reinforcement as a pruning mechanism. Most RL focuses on rewarding correct behavior; this paper shows that punishing specific incorrect behaviors can be more effective for exploration. The key is specificity — don’t just say “wrong,” say “this exact path is wrong,” which forces the model to try different paths.

论文: 2604.14142 作者: Yuqiao Tan, Minzheng Wang, Bo Liu, Zichen Liu, Tian Liang, Shizhu He, Jun Zhao, Kang Liu 分类: cs.LG, cs.AI, cs.CL

缺口

当前用于大语言模型推理的强化学习(RLVR)优化的是 P(y|x)——给定输入 x 时输出 y 的概率。

当基座模型已经知道如何推理、只是需要对齐时,这种方法有效。

问题在于:如果基座模型的输出分布根本不覆盖正确的推理路径,再多的条件优化也发现不了它们。

这就像在没有地基的房子里重新摆放家具。

预训练本可以通过扩展 P(y) 来解决这个问题,但传统预训练使用静态数据集和被动学习。

这就像试图通过给人看随机棋局来教他下棋,而不是让他从错误中学习。

问题:RLVR 遇到天花板
    |
    v
观察:P(y|x) 受限于基座 P(y)
    |
    v
假设:用 RL 直接优化 P(y)
    |
    v
方法:PreRL(预训练空间 RL)+ NSR(负样本强化)
    |
    v
证据:转换思维增加 14.89 倍,反思增加 6.54 倍
    |
    v
结论:先剪枝错误路径,再微调

增量

一句话: 这篇论文之前,推理的强化学习意味着打磨模型已知的东西;之后,它意味着先通过教模型什么不该做来扩展推理空间。

核心机制

PreRL 在预训练期间直接对边缘分布 P(y) 应用强化学习,而不是在微调期间对条件分布 P(y|x) 应用。

关键洞察:log P(y) 和 log P(y|x) 的梯度高度对齐,所以优化 P(y) 是标准 RL 的有效替代。

在 PreRL 内部,负样本强化(NSR)对错误的推理路径给予负奖励。

这不只是惩罚错误答案——而是主动剪枝推理树。

当模型生成错误解法时,NSR 压低其概率,迫使模型探索替代路径。

这触发了内生反思:模型开始生成”等等,这不对”的想法和回溯步骤。

完整系统双空间 RL(DSRL)采用两阶段方法:第一阶段运行 NSR-PreRL 来扩展推理视野并剪枝坏路径。

第二阶段从这个剪枝后的空间初始化,运行标准 RL 进行细粒度优化。

可以把它想象成策略转世——模型死亡,学习是什么杀死了它,然后更聪明地重生。

输入 x --> [基座模型] --> 初始 P(y)
                              |
                              v
                [NSR-PreRL:负强化]
                剪枝错误路径,扩展探索
                              |
                              v
                        扩展后的 P(y)
                              |
                              v
                [标准 RL:正向精炼]
                打磨正确推理路径
                              |
                              v
                        最终 P(y|x)

核喻:把推理空间想象成一片有很多小径的森林。

标准 RL 就像雇一个向导带你走最好的路——但只能在向导已知的路径中选。

PreRL 就像在向导到来之前先烧掉毒藤、清理灌木。

NSR 是受控燃烧:你故意在坏路径上放小火(负强化),让它们变得无法通行。

森林没有缩小——它重新组织了。

死胡同小径消失了,灌木清理后出现了新路径。

当向导(标准 RL)最终到来时,他们面对的是一片已经为导航预先塑形的森林。

关键概念

  • 预训练空间 vs 微调空间:预训练空间优化 P(y)——模型生成任何输出的原始能力,独立于输入。

微调空间优化 P(y|x)——输出与特定输入的匹配程度。

区别在于:P(y) 关乎模型能说什么;P(y|x) 关乎给定上下文它应该说什么。

如果你的模型根本无法生成正确推理(正确路径的 P(y) 很低),再多的输入条件化也没用。

这就像试图教一个人用他不会的语言写诗——你需要先有词汇(P(y)),才能教风格(P(y|x))。

  • 负样本强化(NSR):标准 RL 对正确输出给正奖励。

NSR 对错误输出给负奖励。

这种不对称很重要:正强化说”多做这个”,但模型可能不知道”这个”泛化到什么。

负强化说”别做这个具体的错事”,更精确。

例子:如果模型解 2+2=5,NSR 不只是说”错”——它惩罚导致 5 的整个推理链,让模型不太可能再用那条链。

这产生了探索替代方案的压力,就像走迷宫的人标记死胡同。

  • 梯度对齐:论文证明了 ∇log P(y) 和 ∇log P(y|x) 指向相似方向。

为什么重要?这意味着优化 P(y)(更简单,不需要输入条件化)近似优化 P(y|x)(我们真正想要的)。

这就像在跑步机上训练跑步者(P(y))而不是在户外跑道上(P(y|x))——即使上下文不同,机制也能迁移。

这证明了用 PreRL 作为标准 RL 的替代是合理的。

框架转变

之前(标准 RLVR):              之后(DSRL):

输入 x                           输入 x
  |                                |
  v                                v
[基座模型 P(y|x)]                [基座模型 P(y)]
  |                                |
  v                                v
[RL:奖励正确的 y]               [NSR-PreRL:惩罚错误的 y]
  |                              (剪枝推理空间)
  v                                |
优化后的 P(y|x)                    v
(受基座限制)                  扩展后的 P(y)
                                   |
                                   v
                               [标准 RL:奖励正确的 y|x]
                               (在剪枝空间内精炼)
                                   |
                                   v
                               优化后的 P(y|x)
                               (不受原始基座限制)

一句话:从打磨固定的推理空间,到先扩展和剪枝那个空间,再打磨。

专家评审

选题眼光:真实缺口。

RLVR 受基座模型能力限制这一观察在经验上显而易见,但理论上探索不足。

该领域一直在向微调投入更多算力,却没有质疑基座分布是否足够。

这篇论文问对了问题。

方法成熟度:NSR 很优雅——负强化用于推理虽然在其他 RL 领域是标准做法,但在这里使用不足。

梯度对齐证明扎实但不算突破(它是链式法则的结果)。

两阶段 DSRL 方法感觉略显临时;为什么不交错 NSR 和正向 RL?论文没有探索这个设计空间。

实验诚意:基线公平(标准 RLVR、普通预训练)。

转换思维增加 14.89 倍很惊人,但论文没有展示失败案例或讨论 NSR 何时可能过度剪枝。

实验聚焦数学推理;泛化到其他领域不清楚。

一个警示:没有关于阶段转换时机的消融——何时应该停止 NSR 并开始标准 RL?

写作功力:摘要过度推销(“异常有效的驱动力”)。

第 3 节的理论分析很密集,在形式化之前需要更多直觉。

NSR 机制埋在第 4 节,而它应该放在最前面和中心位置。

如果作者重写第 2 节,用森林比喻而不是方程开头,论文会更易懂。

判决:弱接收——扎实的想法配上好的实验结果,但方法感觉还在寻找最终形态。

NSR 洞察值得发表,但论文需要再迭代一次来澄清设计选择和失败模式。

要点总结

对实践者:如果你在微调推理模型时遇到性能天花板,试试这个:在标准 RL 之前,运行一个阶段,明确惩罚错误的推理链(不只是错误答案)。

跟踪模型是否开始生成更多回溯或自我纠正的 token——这是推理空间正在扩展的信号。

对研究者:P(y) 和 P(y|x) 之间的梯度对齐暗示了一个更广泛的原则:如果梯度对齐,你可以优化更简单的分布作为复杂条件分布的代理。

这可能适用于推理之外——任何有昂贵条件优化的地方,检查边缘优化是否是可行的替代。

可迁移技术:负强化作为剪枝机制。

大多数 RL 专注于奖励正确行为;这篇论文表明惩罚特定的错误行为对探索可能更有效。

关键是特异性——不要只说”错”,说”这条确切的路径是错的”,这迫使模型尝试不同路径。