Dueling DQN — architecture.
hardAnswer
- Split Q head into two streams: V(s) (state value) and A(s, a) (advantage), combined as A(s, a) (identifiability constraint).
- Improves learning when many actions have similar values (V dominates); doesn't waste capacity redundantly encoding V per action.
- Combined with Double DQN + prioritized replay + noisy nets → Rainbow DQN (Hessel et al. 2018).
Check yourself — multiple choice
- Same as DQN
- Split Q into A; better when many actions have similar Q; part of Rainbow DQN
- Random
- Not real
Dueling: Q = V + A - mean A; efficient when actions similarly valued.
#value-methods#deep-rl
Practise Reinforcement Learning
214 interview questions in this topic.