Rethinking the Trust Region in LLM Reinforcement Learning
Penghui Qi, Xiangxin Zhou, Zichen Liu, Tianyu Pang, Chao Du, Min Lin, Wee Sun Lee
TL;DR
The paper argues that PPO's ratio clipping is ill-suited for LLM fine-tuning due to long-tailed vocabularies, and introduces Divergence Proximal Policy Optimization (DPPO), a trust-region method that directly constrains distributional divergence (e.g., $D_{TV}$ or $D_{KL}$) using memory-efficient Binary and Top-K approximations. It provides a finite-horizon policy-improvement bound tailored to LLM generation, showing how a principled divergence-based constraint improves stability and learning efficiency. Extensive scaling experiments across multiple models and tasks demonstrate DPPO's superior stability and faster convergence compared to PPO-based baselines, with reduced training-inference mismatch. The work offers practical guidelines and theoretical grounding for RL-based LLM fine-tuning, highlighting the importance of appropriately constraining updates to avoid over-penalizing rare tokens while guarding against destabilizing mass shifts in common tokens.
Abstract
Reinforcement learning (RL) has become a cornerstone for fine-tuning Large Language Models (LLMs), with Proximal Policy Optimization (PPO) serving as the de facto standard algorithm. Despite its ubiquity, we argue that the core ratio clipping mechanism in PPO is structurally ill-suited for the large vocabularies inherent to LLMs. PPO constrains policy updates based on the probability ratio of sampled tokens, which serves as a noisy single-sample Monte Carlo estimate of the true policy divergence. This creates a sub-optimal learning dynamic: updates to low-probability tokens are aggressively over-penalized, while potentially catastrophic shifts in high-probability tokens are under-constrained, leading to training inefficiency and instability. To address this, we propose Divergence Proximal Policy Optimization (DPPO), which substitutes heuristic clipping with a more principled constraint based on a direct estimate of policy divergence (e.g., Total Variation or KL). To avoid huge memory footprint, we introduce the efficient Binary and Top-K approximations to capture the essential divergence with negligible overhead. Extensive empirical evaluations demonstrate that DPPO achieves superior training stability and efficiency compared to existing methods, offering a more robust foundation for RL-based LLM fine-tuning.
