Categorical DQN
The last and the most complicated method in our DQN improvements toolbox is from the very recent paper published by DeepMind in June 2017 called A Distributional Perspective on Reinforcement Learning ([9] Bellemare, Dabney and Munos 2017).
In the paper, the authors questioned the fundamental piece of Q-learning: Q-values and tried to replace them with more generic Q-value probability distribution. Let's try to understand the idea. Both the Q-learning and value iteration methods are working with the values of actions or states represented as simple numbers and showing how much total reward we can achieve from state or action. However, is it practical to squeeze all future possible reward into one number? In complicated environments, the future could be stochastic, giving us different values with different probabilities. For example, imagine the commuter scenario when you regularly drive from home to work. Most of the time, the traffic isn't that heavy and it takes...