REVIEW 4 major objections 6 minor 2 cited by
A new RLVR method, EAPO, reuses a prior RL-optimized policy as an action-level experience prior, resampling tokens at critical decision points to improve LLM reasoning over state-of-the-art baselines.
Reviewed by Pith at T0; open to challenge. T0 means a machine referee read the full paper against a public rubric. the ladder, T0–T4 →
EAPO injects a prior RL policy's token choices at critical decision points during rollout and beats standard RLVR baselines on math and science reasoning benchmarks.
T0 review reviewed 2026-08-02 challenge →
load-bearing objection EAPO is a plausible empirical method with consistent gains, but its 'stable and unbiased learning' claim does not survive contact with the actual estimator. the 4 major comments →
Experience Augmented Policy Optimization for LLM Reasoning
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
Core claim
EAPO establishes that selectively injecting experience from a prior RL-optimized policy at critical decision points improves LLM reasoning over state-of-the-art RLVR methods. At each decoding step, it computes a token-level log-likelihood discrepancy \delta_t = \log \pi_\theta(y_t | q, y_{<t}) - \log \pi_{RL}(y_t | q, y_{<t}); when \delta_t exceeds a threshold \tau, the token is resampled from \pi_{RL}. Training uses a smoothed response-level importance ratio to keep gradients stable, along with positive-only filtering of experience-augmented trajectories and annealing that disables resampling after 60 steps. On Qwen-2.5-Math-7B and Qwen-3-8B-Base, EAPO reaches the highest Pass@1 and Pass@16
What carries the argument
The central mechanism is the gated token-resampling rule: a token-level discrepancy \delta_t compares current and prior policy log-likelihoods, and a gate g_t = I(\delta_t > \tau) triggers resampling from the prior RL policy \pi_{RL}. To keep optimization stable, EAPO uses a response-level smoothed importance ratio \tilde r_i = \pi_\theta(o_i) / ((1-\rho_i)\pi_{old} + \rho_i \pi_{RL}), where \rho_i is the fraction of resampled tokens; when \rho_i = 0 the ratio reduces to standard on-policy importance sampling. Positive experience filtering and block-wise verification (inspired by speculative decoding) complete the machinery.
Load-bearing premise
The importance ratio in Eq. (12) treats the effective rollout policy as a fixed mixture of \pi_{old} and \pi_{RL} weighted by the resampling fraction; if the true behavior policy under gated resampling diverges from this surrogate, the gradient estimate is biased.
What would settle it
On a small held-out set, compute the exact per-token sampling distribution under EAPO's gated resampling (including the gating decisions) and compare the true trajectory probability with \tilde\pi_{Exp}; if the divergence is substantial, the smoothing assumption fails and the unbiasedness claim is contradicted.
If this is right
- EAPO can be applied on top of any RLVR base algorithm (e.g., DAPO) and yields consistent gains across model scales and benchmarks, suggesting experience reuse is a general orthogonal improvement.
- Because resampling is sparse (resampled ratio below 4%), the method significantly cuts exploration cost while maintaining on-policy exploration.
- The improvement on out-of-distribution science benchmarks (GPQA, MMLU-Pro) indicates EAPO learns transferable reasoning behaviors rather than memorizing training patterns.
- EAPO with smoothed importance sampling outperforms both trajectory-level replay and token-level supervision methods, implying that critical-token injection is a more effective form of experience reuse.
- The smoothing and positive filtering components are complementary; ablations show monotonic gains when added incrementally.
Where Pith is reading between the lines
- EAPO's critical-token detection could be used as a diagnostic to identify exactly which reasoning steps the current policy is unsure about, potentially enabling human-understandable explanations of policy failure.
- The response-level smoothed importance ratio is a heuristic approximation; if it is replaced with a per-token causal importance correction, the method might achieve unbiased gradients and further gains — a testable variant.
- The dependence on a single fixed \pi_{RL} is a limitation acknowledged in the paper; extending to multiple or evolving experience policies may improve robustness and is a natural next step.
- The threshold \tau and annealing step T are fixed; adapting them to training dynamics could make the method less sensitive, which the paper leaves open.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes Experience-Augmented Policy Optimization (EAPO), a method for LLM reasoning with verifiable rewards. EAPO uses a previously RL-optimized policy πRL as an action-level prior: at decoding steps where the current policy is overconfident relative to πRL (measured by a log-likelihood discrepancy δ_t > τ), the token is resampled from πRL. A block-wise variant amortizes the discrepancy check. For optimization, the paper introduces positive experience filtering (keeping only successful experience-augmented trajectories) and a smoothed importance-sampling ratio based on the fraction ρ of resampled tokens. The method is evaluated on AIME'24, AIME'25, AMC, GPQA, and MMLU-Pro with Qwen-2.5-Math-7B and Qwen-3-8B, reporting consistent improvements over GRPO, DAPO, on-policy distillation, multi-teacher distillation, and trajectory replay. The central theoretical claim is that the smoothed importance-sampling scheme yields 'stable and unbiased learning' from experience-augmented rollouts.
Significance. The empirical direction is interesting and timely: reusing an RL-optimized policy as a sparse, action-level prior is a more policy-adaptive alternative to trajectory replay, and the reported gains are consistent across five benchmarks and two base models. The ablations on resampling threshold, experience granularity, and positive filtering provide useful evidence for the design choices. However, the paper's theoretical contribution as stated—unbiased importance-sampling correction for the gated sampling process—is not sound. If the authors reframe the smoothed ratio as a heuristic correction or provide a valid unbiased estimator, the empirical results would still be worth publishing. The current version overclaims statistical guarantees that are not delivered, so substantial revision is needed before the paper can be accepted.
major comments (4)
- [§3.3, Eqs. (10)–(12)] The abstract and Sec. 3.3 state that the adapted importance-sampling scheme ensures 'stable and unbiased learning.' This is not established and is false as stated. The actual rollout behavior in Eqs. (7)–(8) is a per-token thresholded mixture: q_t(a)=π_old(a)1{δ_t(a)≤τ}+α_t π_RL(a), with α_t=Σ_{a:δ_t(a)>τ}π_old(a). The surrogate \tilde{π}^b_Exp=(1−ρ)π_old+ρπ_RL is a response-level mixture with ρ the realized fraction of resampled tokens; it coincides with the true behavior only when ρ=0 or ρ=1. For 0<α_t<1 the two differ, and no error bound is supplied. The unbiasedness claim should be removed or replaced by a corrected estimator/proof.
- [§3.3, Eq. (9) and Algorithm 1 lines 28–31] Positive filtering discards experience-augmented trajectories with R=0 from the gradient. This conditions the update on R=1 without an importance-weight or control-variate correction. The effective objective is an expectation under q_Exp(·|R=1), not under q_Exp; even if the surrogate Eq. (11) were exact, the estimator would be biased for the stated objective. If positive filtering is intended as a heuristic variance-reduction device, it should be labeled as such rather than as part of an unbiased scheme.
- [§4.2, Figure 2 and Appendix A] The threshold τ is selected using AIME'24 performance ('we adopt τ=0.5 as the default setting' from Figure 2a), and Figure 2a reports 'the best performance achieved during training.' Likewise T=60 is chosen from AIME'24 in Figure 4a. The headline AIME'24 comparison in Table 1 is therefore a selected statistic from tuning on the test benchmark, not an independent prediction. Re-report final-checkpoint results or use a separate validation set; the other benchmarks (AIME'25, AMC, GPQA, MMLU-Pro) are less affected but should also use a fixed protocol.
- [§3.3, 'Resampling-based Importance Sampling'] The paper claims token-level correction 'breaks their causal dependency.' This is incorrect: autoregressive importance-sampling ratios factorize into per-token conditional ratios; resampling a prefix changes the conditioning, which is exactly what the per-token product accounts for. The response-level surrogate in Eq. (11) is not a valid behavior policy for the gated process. If token-level correction is avoided for computational or stability reasons, Eqs. (10)–(12) should be presented as a heuristic, not as an unbiased estimator.
minor comments (6)
- [Table 1] The Trajectory Replay row for Qwen-2.5-Math-7B reads '72.7489.9342.08' with missing separators; fix formatting.
- [Tables 1 and 2] Results are averages over 32 or 8 runs but no standard deviations or confidence intervals are reported. Given the small margins on some benchmarks (e.g., MMLU-Pro on Qwen-3-8B), error bars are needed to support the 'consistent improvement' claim.
- [§4.1] The training budget for obtaining πRL is not specified (number of steps, convergence criteria, compute). Without this, the two-stage procedure is hard to reproduce.
- [§4.3] The ablation 'EAPO w/o sIS' is not fully specified: what importance ratio replaces Eq. (12) in that variant? This is needed to interpret the ablation.
- [Eq. (12)] The notation \tilde{π}^b_Exp(o_i^b|q^b) suggests a mixture of full-sequence distributions, but the denominator is never defined explicitly as a product over tokens. Clarify the exact probability model.
- [Figure 2] The metric 'Mean@32' is used in the main text and figures but never defined. Define it precisely in Sec. 4.1.
Circularity Check
EAPO's headline AIME'24 result is partly fitted via hyperparameters selected on AIME'24; the derivation itself is not circular and other benchmarks are independent.
specific steps
-
fitted input called prediction
[Section 4.2 (Hyperparameter Sensitivity, RQ1), Figure 2 caption; Appendix A (Effect of experience annealing)]
"To minimize reliance on πRL while maintaining strong performance, we adopt τ=0.5 as the default setting. This configuration achieves a favorable balance between sparse experience usage and effectiveness, reaching a Mean@32 score of 0.381 on AIME’24. ... Figure 2. Sensitivity analysis of the resampling threshold τ. (a) AIME’24 performance (Mean@32) under different values of τ, reporting the best performance achieved during training."
The default resampling threshold τ and the annealing step T are selected by inspecting AIME'24 performance, and Figure 2(a) reports the best AIME'24 score over training. The main Table 1 results for AIME'24 therefore partly reflect hyperparameters tuned on that exact benchmark rather than an out-of-sample prediction. However, AIME'25, AMC, GPQA, and MMLU-Pro are not used for this selection, and EAPO's core mechanism is not derived from these numbers, so the circularity is partial and confined to the AIME'24 headline.
full rationale
The core EAPO derivation is self-contained: the resampling gate (Eq. 7–8), the smoothed importance ratio (Eq. 10–12), and the DAPO-based objective are defined from first principles in the paper, and the method's performance is evaluated against external baselines and multiple held-out benchmarks. The self-citations to Huang et al. (2026) and other own-team papers provide background motivation about pivotal tokens but are not the load-bearing proof of EAPO's effectiveness; independent citations (Wang et al., 2025; Cheng et al., 2025) support the same premise. The unsupported unbiasedness claim for the smoothed importance-sampling surrogate (Eq. 11) is a correctness/rigor concern, not a circularity, since the surrogate is introduced as an approximation rather than derived from the target. The only genuine circular step is the hyperparameter selection: τ and T are tuned on AIME'24 and the best AIME'24 training score is used as evidence, making that specific benchmark partly a fitted result. The other four benchmarks are untouched by this selection and give independent grounding, so the central claim is not forced by definition.
Axiom & Free-Parameter Ledger
free parameters (4)
- resampling threshold τ =
0.5
- annealing step T =
60
- block size K =
20
- experience-to-on-policy ratio in group =
1 exp : 15 on-policy
axioms (6)
- domain assumption Binary verifiable reward R(·) returns 1 iff extracted answer equals ground truth.
- domain assumption Prior RL policy πRL trained by DAPO on DAPO-Math-17K is a reliable action-level experience prior.
- domain assumption Token-level log-likelihood ratio δ_t = log πθ - log πRL identifies 'critical decision points' where expert intervention helps.
- ad hoc to paper The smoothed mixture \tildeπExp = (1-ρ)πold + ρπRL adequately approximates the true gated per-token behavior policy for importance sampling.
- ad hoc to paper Group-relative advantage normalization remains valid when failed experience-augmented trajectories are filtered out.
- standard math Block-wise verification with block size K preserves the original resampling behavior.
Cite this review
Pith. "Pith review of Experience Augmented Policy Optimization for LLM Reasoning." pith.science (2026). https://pith.science/paper/25R6PVE3
@misc{pith2026260630420,
author = {Pith},
title = {Pith review of: Experience Augmented Policy Optimization for LLM Reasoning},
year = {2026},
howpublished = {\url{https://pith.science/paper/25R6PVE3}},
note = {Machine review of arXiv:2606.30420}
}
read the original abstract
Reinforcement Learning with Verifiable Rewards (RLVR) is a powerful paradigm for improving the reasoning capabilities of large language models (LLMs). However, existing RLVR methods typically rely on on-policy optimization from scratch, resulting in high sampling costs and inefficient utilization of accumulated experience. As model capabilities and policy behaviors evolve during training, recent attempts to reuse experience via fixed reasoning trajectories further suffer from policy mismatch. Motivated by these limitations, we argue that experience in RLVR should not be reused as fixed reasoning trajectories, but instead expressed in a policy-adaptive manner. In this work, we propose Experience-Augmented Policy Optimization (EAPO), which leverages a prior RL-optimized policy as an action-level experience prior and selectively injects experience at critical decision points during rollout. To ensure stable and unbiased learning from experience-augmented rollouts, EAPO further incorporates an adapted importance sampling scheme. Experiments on using Qwen-2.5-math 7b and Qwen-3-8B on five different benchmarks demonstrate that EAPO consistently improves reasoning performance over state-of-the-art RLVR methods.
Figures
Forward citations
Cited by 2 Pith papers
-
ARMOR: Stabilizing On-Policy LLM RL with Off-Policy Anchor Samples
Injecting correct reference-policy samples and optimizing a mixed importance-sampling ratio prevents validation collapse and raises asymptotic math-reasoning scores beyond reverse-KL baselines.
-
ARMOR: Stabilizing On-Policy LLM RL with Off-Policy Anchor Samples
ARMOR adds correct reference-policy anchor samples to each RL batch and optimizes a reference-mixture importance ratio, preventing validation collapse and extending performance gains.
Reference graph
Works this paper leans on
-
[1]
Chen, C., Borgeaud, S., Irving, G., Lespiau, J.-B., Sifre, L., and Jumper, J. Accelerating large language model decoding with speculative sampling.arXiv preprint arXiv:2302.01318,
-
[5]
Leviathan, Y ., Kalman, M., and Matias, Y
URL https://arxiv.org/ abs/2510.04140. Leviathan, Y ., Kalman, M., and Matias, Y . Fast inference from transformers via speculative decoding. InInter- national Conference on Machine Learning, pp. 19274– 19286. PMLR,
-
[6]
Li, S., Zhou, Z., Lam, W., Yang, C., and Lu, C
URL https://openreview.net/forum?id= jyOgpu5wfC. Li, S., Zhou, Z., Lam, W., Yang, C., and Lu, C. Repo: Replay-enhanced policy optimization.arXiv preprint arXiv:2506.09340, 2025b. Liang, J., Tang, H., Ma, Y ., Liu, J., Zheng, Y ., Hu, S., Bai, L., and Hao, J. Squeeze the soaked sponge: Efficient off-policy reinforcement finetuning for large language model....
-
[7]
Liu, A., Mei, A., Lin, B., Xue, B., Wang, B., Xu, B., Wu, B., Zhang, B., Lin, C., Dong, C., et al. Deepseek-v3. 2: Pushing the frontier of open large language models. arXiv preprint arXiv:2512.02556,
-
[8]
Rethinking visual content refinement in low-shot clip adaptation.arXiv preprint arXiv:2407.14117,
Lu, J., Wang, S., Hao, Y ., Liu, H., Wang, X., and Wang, M. Rethinking visual content refinement in low-shot clip adaptation.arXiv preprint arXiv:2407.14117,
-
[10]
https://thinkingmachines.ai/blog/on-policy- distillation
doi: 10.64434/tml .20251026. https://thinkingmachines.ai/blog/on-policy- distillation. Rein, D., Hou, B. L., Stickland, A. C., Petty, J., Pang, R. Y ., Dirani, J., Michael, J., and Bowman, S. R. Gpqa: A graduate-level google-proof q&a benchmark. InFirst Conference on Language Modeling,
-
[11]
Proximal policy optimization algorithms
Schulman, J., Wolski, F., Dhariwal, P., Radford, A., and Klimov, O. Proximal policy optimization algorithms. arXiv preprint arXiv:1707.06347,
-
[13]
Kimi k2: Open agentic intelligence.arXiv preprint arXiv:2507.20534,
Team, K., Bai, Y ., Bao, Y ., Chen, G., Chen, J., Chen, N., Chen, R., Chen, Y ., Chen, Y ., Chen, Y ., et al. Kimi k2: Open agentic intelligence.arXiv preprint arXiv:2507.20534,
-
[14]
Wang, S., Yu, L., Gao, C., Zheng, C., Liu, S., Lu, R., Dang, K., Chen, X., Yang, J., Zhang, Z., et al. Beyond the 80/20 rule: High-entropy minority tokens drive effective reinforcement learning for llm reasoning.arXiv preprint arXiv:2506.01939,
-
[15]
Quantile advantage estimation for entropy-safe reasoning
Wu, J., Huang, K., Wu, J., Zhang, A., Wang, X., and He, X. Quantile advantage estimation for entropy-safe reasoning. arXiv preprint arXiv:2509.22611,
-
[16]
URL ht tps://openreview.net/forum?id=vO8LLo NWWk. Yang, A., Yang, B., Zhang, B., Hui, B., Zheng, B., Yu, B., Li, C., Liu, D., Huang, F., Wei, H., et al. Qwen2. 5 technical report.arXiv preprint arXiv:2412.15115, 2024a. Yang, A., Zhang, B., Hui, B., Gao, B., Yu, B., Li, C., Liu, D., Tu, J., Zhou, J., Lin, J., et al. Qwen2. 5-math techni- cal report: Toward...
-
[17]
Dapo: An open-source llm reinforcement learning system at scale.arXiv preprint arXiv:2503.14476,
Yu, Q., Zhang, Z., Zhu, R., Yuan, Y ., Zuo, X., Yue, Y ., Dai, W., Fan, T., Liu, G., Liu, L., et al. Dapo: An open-source llm reinforcement learning system at scale.arXiv preprint arXiv:2503.14476,
-
[18]
Zhan, R., Li, Y ., Wang, Z., Qu, X., Liu, D., Shao, J., Wong, D. F., and Cheng, Y . Exgrpo: Learning to reason from experience.arXiv preprint arXiv:2510.02245,
-
[19]
Zhang, H., Fu, J., Zhang, J., Fu, K., Wang, Q., Zhang, F., and Zhou, G. Rlep: Reinforcement learning with experience replay for llm reasoning.arXiv preprint arXiv:2507.07451, 2025a. Zhang, K., Chen, X., Liu, B., Xue, T., Liao, Z., Liu, Z., Wang, X., Ning, Y ., Chen, Z., Fu, X., et al. Agent learning via early experience.arXiv preprint arXiv:2510.08558, 20...
-
[2017]
Shao, Z., Wang, P., Zhu, Q., Xu, R., Song, J., Bi, X., Zhang, H., Zhang, M., Li, Y ., Wu, Y ., et al. Deepseekmath: Push- ing the limits of mathematical reasoning in open language models.arXiv preprint arXiv:2402.03300,
-
[2023]
Cheng, D., Huang, S., Zhu, X., Dai, B., Zhao, W. X., Zhang, Z., and Wei, F. Reasoning with exploration: An entropy perspective.arXiv preprint arXiv:2506.14758,
-
[2024]
Adavip: Aligning multi-modal llms via adaptive vision- enhanced preference optimization, 2025a
Lu, J., Li, J., Gao, Y ., Wu, J., Wu, J., Wang, X., and He, X. Adavip: Aligning multi-modal llms via adaptive vision- enhanced preference optimization, 2025a. URL https: //arxiv.org/abs/2504.15619. Lu, J., Wu, J., Li, J., Jia, X., Wang, S., Zhang, Y ., Fang, J., Wang, X., and He, X. Dama: Data-and model-aware alignment of multi-modal llms. InInternational...
-
[2025]
Comanici, G., Bieber, E., Schaekermann, M., Pasupat, I., Sachdeva, N., Dhillon, I., Blistein, M., Ram, O., Zhang, D., Rosen, E., et al. Gemini 2.5: Pushing the frontier with advanced reasoning, multimodality, long context, and next generation agentic capabilities.arXiv preprint arXiv:2507.06261,
-
[2026]
URL https://openreview.net/forum ?id=r6Pw3RiMYL. Jaech, A., Kalai, A., Lerer, A., Richardson, A., El-Kishky, A., Low, A., Helyar, A., Madry, A., Beutel, A., Car- ney, A., et al. Openai o1 system card.arXiv preprint arXiv:2412.16720,
This paper was first reviewed by deepseek-v4-flash on August 2, 2026.
discussion (0)
Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.