Rethinking Critic Learning in PPO:
Understanding and Mitigating Value Flattening

SParse Proximal Policy Optimization (SP3O)

Yizhuo Li1,2* Jianhao Yan3* Yun Luo2†‡ Zhi Wang4 Futing Wang2 Rong-Xi Tan2,4 Kanghui Tian2 Ganqu Cui2 Ning Ding5 Peilin Zhao1‡ Yafu Li2,6‡ Yu Cheng7‡
1 Shanghai Jiao Tong University 2 Shanghai AI Laboratory 3 Westlake University 4 Nanjing University 5 Tsinghua University 6 The Chinese University of Hong Kong 7 Nanyang Technological University

* Equal contribution · Project lead · Corresponding authors

Abstract

In reinforcement learning for large language models, Proximal Policy Optimization (PPO) commonly uses a critic to estimate state values and reduce the variance of policy updates. However, we uncover a systematic failure mode in PPO critics, which we call Value Flattening: state values estimated from multiple Monte Carlo continuations change sharply across intermediate states while critic predictions remain comparatively flat.

Our analyses relate Value Flattening to an implicit variance penalty in the critic loss and redundant updates from temporally correlated states with similar gradients. Motivated by these findings, we introduce SParse Proximal Policy Optimization (SP³O), which applies the value loss to only a few well-separated states in each response. Across Qwen3-4B-Base and Qwen3-8B-Base, SP³O mitigates Value Flattening and consistently improves the learned policy.

01

Problem: Value Flattening

PPO critics fail to preserve meaningful within-response changes in state value. The mismatch is visible throughout training and becomes more pronounced as the state space grows.

Value Flattening across training checkpoints
Figure 1. Value Flattening across training in a Qwen3-4B-Base PPO run on DAPO-Math-17k. Each panel shows a different correct or incorrect response selected for a large local change in Monte Carlo (MC) value. Across checkpoints, the MC profiles change sharply while the corresponding PPO critic predictions remain comparatively flat.
Value Flattening in LLM reasoning and FrozenLake
Figure 2. Value Flattening in LLM reasoning and stochastic FrozenLake. (a) Adjacent critic-value changes remain near zero even when MC values change substantially. (b) Ground-truth and learned critic value maps as the maze size increases. (c) Larger state spaces lead to smoother predictions, weaker value resolution, and higher error.

02

Why does Value Flattening occur?

Dense critic supervision introduces an implicit variance penalty and aggregates redundant updates from highly correlated neighboring states.

Implicit variance penalty

With terminal-only rewards and γ = λ = 1, every state in a response uses the same sampled terminal return. The dense MSE objective therefore decomposes into a mean-fitting term and a term that directly penalizes prediction variance within the response.

Redundant temporal updates

Adjacent LLM states differ by only one token and share almost their entire history. Their similar representations and aligned gradients cause dense token-level supervision to repeatedly apply nearly the same update.

1T t=1T (vt − R)2 = (v̄ − R)2 + 1T t=1T (vt − v̄)2
(5)
Representation and gradient analysis
Figure 3. Representation and gradient analysis in Qwen3-4B-Base PPO critic supervision. (a) PCA projections show that critic representations occupy a much more compact region than actor representations for the same response. (b) Representation alignment, gradient alignment, and update energy remain high during training, while critic-gradient similarity decreases as supervised token positions move farther apart.

03

SP³O: Method and Results

SP³O keeps the actor objective, rollout procedure, and return targets unchanged. It applies critic loss only at a few well-separated states, reducing both the variance penalty and redundant neighboring updates.

Effects of SP3O on critic prediction
Figure 4. Effects on critic prediction in Qwen3-4B-Base. (a) For matched prompts, the SP³O critic follows the direction and magnitude of its own-policy MC values more closely than the PPO critic. (b) Across prompts, SP³O reduces response-centered MSE at 30%, 60%, and 90% response progress.
Effects of SP3O on critic optimization
Figure 5. Effects on critic optimization in Qwen3-4B-Base. (a) SP³O improves response-level outcome discrimination while preserving within-response value variation. (b) It shifts the effective-rank distribution of critic hidden states upward. (c) It reduces the discrepancy between value-head gradients induced by terminal-return and MC targets.
ModelMethodAIME24AIME25AIME26AMC23MATH500MinervaOlympiadAvg.
Qwen3-4B-BaseBase4.583.754.3825.0842.7822.7122.3517.95
PPO17.5019.9014.6961.8070.1542.8236.3537.60
GRPO17.1916.1910.1063.8378.2145.7143.6239.26
SP³O23.0223.5422.0869.9283.7947.9348.6845.57
Qwen3-8B-BaseBase7.407.925.9437.6654.0824.6927.3623.58
PPO30.2125.1023.3372.1986.3348.8153.5648.50
GRPO28.5022.0422.7073.8285.2652.0650.9847.91
SP³O33.9128.0227.3975.0087.3347.4054.5050.51

Table 1. In-domain mathematical-reasoning accuracy (%), averaged over 32 generations. The final column averages the seven listed tasks.

ModelMethodARC-CMMLU-ProGPQAAGIEval†BBH†ZebraLogic†Avg.
Qwen3-4B-BaseBase34.9816.1714.0227.9321.111.3519.26
PPO89.1954.3934.8565.8757.509.9051.95
GRPO90.9656.8738.8968.1871.1712.5856.44
SP³O91.0261.7538.8971.4473.3519.2059.28
Qwen3-8B-BaseBase61.8236.2227.0248.5950.714.9038.21
PPO93.8464.1947.2274.5279.2727.2564.38
GRPO93.0466.2749.4975.1578.1027.4064.91
SP³O93.1365.8349.9476.9580.8931.4566.37

Table 2. Out-of-distribution evaluation accuracy (%), averaged over four generations. † indicates datasets scored with the xVerify verifier.

Online learning dynamics and actor updates
Figure 6. Online learning dynamics on Qwen3-4B-Base. (a) SP³O produces smaller and less variable within-iteration actor updates. (b–c) It maintains higher validation accuracy and rollout reward after the early training stage. (d) SP³O also generates longer responses than standard PPO.

04

Ablation

A small number of well-spaced supervision states works best. Increasing supervision density eventually approaches the dense PPO baseline, while random placement underperforms fixed coverage.

Effect of critic supervision density
Figure 7. Effect of critic-supervision density on performance. Sparse configurations with 3–8 supervised states outperform denser variants and token-level PPO. Mean training reward is highest with three well-separated anchors and declines as supervision becomes denser.
Main anchorsAccuracy (%)
PPO baseline37.60
Random36.59
0.2 / 0.5 / 0.844.65
0.3 / 0.6 / 0.945.57

Table 3. Anchor-placement ablation on Qwen3-4B-Base (K = 3).

Citation

If this work is useful for your research, please cite the paper.

@article{li2026rethinking,
  title  = {Rethinking Critic Learning in PPO:
            Understanding and Mitigating Value Flattening},
  author = {Li, Yizhuo and Yan, Jianhao and Luo, Yun and
            Wang, Zhi and Wang, Futing and Tan, Rong-Xi and
            Tian, Kanghui and Cui, Ganqu and Ding, Ning and
            Zhao, Peilin and Li, Yafu and Cheng, Yu},
  year   = {2026},
  eprint = {2609.18708},
  archivePrefix = {arXiv},
  primaryClass = {cs.LG}
}