Skip to content

Latest commit

 

History

History

dqn

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

Deep Q-Networks

Prioritized experience replay

  • Introduces prioritized experience replay, an improved version of the experience replay strategy used in the DQN paper. In prioritized experince replay, examples in the experience replay buffer are weighted by TD-error, which measures how surprising the transition was.
  • Shows improved performance on ALE.
  • Papers:

One step q-learning

Dueling DQN

Continuous Deep Q-Learning with Model-based Acceleration (NAF)

  • Continuous version of DQN that efficiently computes argmax(Q).
  • Papers

Q-Prop

Reactor