Different notions of return — MC, TD(0), n-step, GAE.
hardAnswer
- MC return: — full episode, unbiased, high variance.
- TD(0): — biased (bootstrap), low variance. n-step: + ... + — knob n interpolates.
- GAE (Generalized Advantage Estimation): weighted sum over n-step advantages with parameter λ — smooth bias-variance tradeoff.
- GAE with λ ≈ 0.95 is default in PPO.
Check yourself — multiple choice
- Same thing
- MC (unbiased, high var), TD(0) (biased, low var), n-step (knob n), GAE(λ) smooth interpolation — PPO uses GAE(λ ≈ 0.95)
- Random
- Only MC
MC vs TD(0) vs n-step vs GAE: bias-variance interpolation.
#theory#actor-critic
Practise Reinforcement Learning
214 interview questions in this topic.