What does off-policy mean in Q-learning?
- Learning the best policy while exploring with another
- Learning only from perfect play
- Freezing the policy during training
What does a temporal-difference update nudge an old guess toward?
- The reward just got plus the next estimate
- The average of all past rewards
- A random nearby value
With a function approximator, bootstrapping can chase its own errors.
Circle one: True False
An agent takes a random exploring action. Why is the learned value still safe?
- Random actions teach nothing at all
- Exploring actions skip the update
- The update uses the best next value
After one update, which estimate changed?
- The later estimate
- The earlier estimate
- Both estimates equally
Each update assumes what about the next estimate?
- It is exact already
- It is closer to the truth
- It will never change
A student says exploring ruins the best policy. What is the mistake?
- Exploring ruins every method
- Off-policy targets best-next anyway
- Best policies never need data
Values swing wildly after you swap in a function approximator. What failed?
- Exploration ran too hot
- Rewards arrived too rarely
- Bootstrapping chased its own errors