paper-with-me

홈 › Papers

Rethinking Importance Sampling in LLM Policy Optimization: A Cumulative Token Perspective

2026-05-08 · Yuheng Zhang, Chenlu Ye, Shuowei Jin, Changlong Yu, Wei Xiong, Saurabh Sahu, Nan Jiang arxiv

Reinforcement learning, including reinforcement learning with verifiable rewards (RLVR), has emerged as a powerful approach for LLM post-training. Central to these approaches is the design of the importance sampling (IS) ratio used in off-policy policy-gradient estimation. Existing methods face a fundamental bias-variance dilemma: token-level IS ratios, as adopted by PPO (Schulman et al., 2017) and GRPO (Shao et al., 2024), introduce bias by ignoring prefix state distribution mismatch; full sequence ratios provide exact trajectory-level correction but suffer from high variance due to the multiplicative accumulation of per-token ratios, while GSPO (Zheng et al., 2025) improves numerical stability via length normalization at the cost of deviating from the exact full-sequence IS correction. In this work, we identify the cumulative token IS ratio, the product of per-token ratios up to position $t$, as a theoretically principled solution to this dilemma. We prove that, under the token-level policy-gradient formulation, this ratio provides an unbiased prefix correction for each token-level gradient term and has strictly lower variance than the full sequence ratio. Building on this insight, we propose CTPO (Cumulative Token Policy Optimization), which combines the cumulative token IS ratio with position-adaptive clipping that scales log-space clip bounds according to the natural $\sqrt{t}$ growth of the cumulative log-ratio. This yields more consistent regularization across token positions. We implement and evaluate CTPO in the tool-integrated reasoning setting on several challenging mathematical reasoning benchmarks, achieving the best average performance across both model scales compared with strong GRPO and GSPO baselines. Code will be available at https://github.com/horizon-llm/CTPO.

📄 PDF Abstract BibTeX arXiv:2605.07331

Code (0)

등록된 구현이 없습니다.

Tasks

Reinforcement LearningMathematical Reasoning

Similar Papers 제목 키워드 기반

A Step Back: Prefix Importance Ratio Stabilizes Policy Optimization

2026-01-30 · Shiye Lei, Zhihao Cheng, Dacheng Tao arxiv

Reinforcement learning (RL) post-training has increasingly demonstrated strong ability to elicit reasoning behaviors in large language models (LLMs). For training efficiency, rollouts are typically generated in an off-po…

Reinforcement LearningMathematical Reasoning

PTR-PPO: Proximal Policy Optimization with Prioritized Trajectory Replay

2021-12-07 · Xingxing Liang, Yang Ma, Yanghe Feng, Zhong Liu

On-policy deep reinforcement learning algorithms have low data utilization and require significant experience for policy improvement. This paper proposes a proximal policy optimization algorithm with prioritized trajecto…

Deep Reinforcement Learning

Implementation Matters in Deep RL: A Case Study on PPO and TRPO

2020-05-01 · ICLR 2020 1 · Logan Engstrom, Andrew Ilyas, Shibani Santurkar, Dimitris Tsipras 외

We study the roots of algorithmic progress in deep policy gradient algorithms through a case study on two popular algorithms, Proximal Policy Optimization and Trust Region Policy Optimization. We investigate the conseque…

Deep Reinforcement Learningreinforcement-learningReinforcement Learning (RL)

Implementation Matters in Deep Policy Gradients: A Case Study on PPO and TRPO

2020-05-25 · Logan Engstrom, Andrew Ilyas, Shibani Santurkar, Dimitris Tsipras 외

We study the roots of algorithmic progress in deep policy gradient algorithms through a case study on two popular algorithms: Proximal Policy Optimization (PPO) and Trust Region Policy Optimization (TRPO). Specifically, …

Deep Reinforcement Learningreinforcement-learningReinforcement Learning (RL)

Sample Dropout: A Simple yet Effective Variance Reduction Technique in Deep Policy Optimization

2023-02-05 · Zichuan Lin, Xiapeng Wu, Mingfei Sun, Deheng Ye 외

Recent success in Deep Reinforcement Learning (DRL) methods has shown that policy optimization with respect to an off-policy distribution via importance sampling is effective for sample reuse. In this paper, we show that…

Deep Reinforcement LearningMuJoCo