PPO (Proximal Policy Optimization) constrains policy updates via a clipped probability ratio. With the ratio
rt(θ)=πθold(at∣st)πθ(at∣st), the clipped objective is
LCLIP(θ)=Et[min(rt(θ)A^t,clip(rt(θ),1−ε,1+ε)A^t)] with
ε=0.2: r is capped at 1.2 for positive advantages and floored at 0.8 for negative ones — e.g.
r=2 is clipped to
1.2, preventing policy jumps.