The Mirage of Optimizing Training Policies: Monotonic Inference Policies as the Real Objective for LLM Reinforcement Learning
arXiv · HuggingFace · ▲6
Abstract (verbatim)
Reinforcement learning (RL) has gained growing attention in large language model (LLM) post-training, yet RL training remains fragile and can suffer from instability or collapse. One vital cause is training-inference mismatch: LLM adopts separate inference and training engines for generation efficiency and training precision, which in practice exhibits inconsistent probabilities for the same trajectories on training and inference sides, even with synchronized model parameters. This naturally induces a special type of off-policyness ever existing and poisoning the training. Prior works have made various efforts in addressing the off-policyness to stabilize the training policies under the mismatch. In this paper, we point out the objective misalignment neglected by existing works that an effective update to the policy in the training engine not necessarily ensures the improvement of the inference policy, i.e., the one used in deployment. To this end, we propose a new policy optimization objective for LLM RL, named Monotonic Inference Policy Improvement (MIPI). Following this principle, we introduce Monotonic Inference Policy Update (MIPU), a two-step LLM RL framework that constructs sampler-referenced candidate updates and selectively accepts synchronized candidates using an inference-side gap proxy. Experiments conducted on two model scales under high mismatch show that MIPU improves average reasoning performance and training stability.
Background
With the rise of reasoning-focused models like DeepSeek-R1, reinforcement learning (RL) has become a critical paradigm for post-training large language models (LLMs), aiming to enhance capabilities such as instruction following, alignment, and reasoning. Due to the massive scale of LLMs, modern RL pipelines typically separate rollout generation (handled by inference engines like vLLM or SGLang) from gradient computation (performed by training engines like FSDP or Megatron). This separation causes a "training-inference mismatch," where the training and inference policies may assign different probabilities to the same trajectories—even with synchronized parameters—due to differences in precision, decoding, or serving backends.
Previous approaches attempted to mitigate this issue by correcting sampler-side ratios, filtering unstable samples, or reducing system-level discrepancies. However, these methods failed to address a fundamental problem: improvements to the training policy do not necessarily translate to better performance for the inference policy used in deployment. For example, a training policy optimized under standard objectives might still degrade inference performance due to quantization or decoding differences.
This paper proposes a new principle called "Monotonic Inference Policy Improvement (MIPI)," which shifts the optimization focus directly to the inference policy's performance. Based on this principle, the authors introduce "Monotonic Inference Policy Update (MIPU)," a two-step framework:
1. Sampler-referenced update (Step 1): The training engine generates a candidate model that ensures partial monotonicity in policy improvement.
2. Inference-gap-aware acceptance (Step 2): The candidate update is selectively accepted based on an inference-side gap proxy, ensuring the remaining monotonicity.
Experiments under high-mismatch settings (e.g., FP8-quantized inference) show that MIPU outperforms previous methods in both reasoning performance and training stability.
Key differences from prior work include:
1. Objective redefinition: Shifting from optimizing the training policy to directly improving the inference policy.
2. Two-stage framework: Explicitly separating candidate generation and acceptance steps to handle mismatch robustly.
3. Inference-side gap proxy: Using a deployment-aware criterion for selective updates, rather than just reducing mismatch.
This approach better aligns with real-world deployment needs and provides a more reliable path for RL in LLMs.




