UCB — Upper Confidence Bound for exploration.
mediumAnswer
- In bandits: pick a = argmax .
- Confidence bound term inflates rarely-tried actions.
- Provides O(√T log T) regret bound.
- In tree search (PUCT): a = argmax Q + c · · √.
- Uses: bandit algorithms, MCTS, contextual bandits.
- Modern application: exploration bonus in some RL papers (BOOTSTRAPPED DQN, RND).
Check yourself — multiple choice
- Same as ε-greedy
- a = argmax ; confidence bound inflates rare actions; O(√T log T) regret; PUCT extends to trees; used in MCTS + AlphaZero
- Random
- Not real
UCB: Q̂ + c √; optimism under uncertainty; PUCT for trees.
#exploration#theory
Practise Reinforcement Learning
214 interview questions in this topic.