TRPO — Trust Region Policy Optimization.
hardAnswer
- Constrained optimization: max_θ s.t.
- ≤ δ.
- Solved via conjugate gradient + line search on the natural gradient direction.
- Guarantees monotonic policy improvement (theoretically).
- Complex to implement + expensive per update.
- PPO simplifies this to a clipped objective (much easier, similar performance) → PPO is basically TRPO's practical successor.
Check yourself — multiple choice
- Same as PPO
- max s.t. ≤ δ; conjugate gradient + line search on natural gradient; monotone improvement; simplified into PPO clipping
- Random
- Not real
TRPO: constrained KL trust region + natural gradient; PPO's rigorous predecessor.
#policy-methods#actor-critic
Practise Reinforcement Learning
214 interview questions in this topic.