PPO's clipped surrogate objective — write it and explain.
hardAnswer
- where _θ.
- Clip stops the policy from moving too far from on either side. min ensures we take the more conservative estimate.
- Typical ε = 0.2.
- Combined with GAE advantage and clipped value loss → PPO2 (standard).
- Simpler and works better in practice than TRPO's constrained optimization.
Check yourself — multiple choice
- Random
- with _θ/, ε ≈ 0.2; clip caps policy update size; simpler than TRPO's constrained opt
- Same as REINFORCE
- Not real
PPO: ; ε ≈ 0.2.
#policy-methods#actor-critic
Practise Reinforcement Learning
214 interview questions in this topic.