What is: Rainbow DQN?
Source | Rainbow: Combining Improvements in Deep Reinforcement Learning |
Year | 2000 |
Data Source | CC BY-SA - https://paperswithcode.com |
Rainbow DQN is an extended DQN that combines several improvements into a single learner. Specifically:
- It uses Double Q-Learning to tackle overestimation bias.
- It uses Prioritized Experience Replay to prioritize important transitions.
- It uses dueling networks.
- It uses multi-step learning.
- It uses distributional reinforcement learning instead of the expected return.
- It uses noisy linear layers for exploration.