What is TD error?
mediumAnswer
- — difference between the bootstrapped target and current estimate.
- Drives all TD-based updates: V ← V + α δ, Q-learning target is δ with max in bootstrap.
- Positive δ = state was better than expected; negative = worse.
- Fundamental signal for value learning.
- Modern uses: PPO advantage, GAE, prioritized replay weighting (δ magnitude).
Check yourself — multiple choice
- Same as MSE
- — bootstrapped target minus current estimate; drives all TD updates + prioritized replay
- Random
- Not real
TD error δ = target - current; core signal for TD-based methods.
#theory#value-methods
Practise Reinforcement Learning
214 interview questions in this topic.