• This repository has been archived on 05/Jun/2020
  • Stars
    star
    235
  • Rank 170,147 (Top 4 %)
  • Language
    Jupyter Notebook
  • Created about 5 years ago
  • Updated over 4 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Implementations of algorithms from the Q-learning family. Implementations inlcude: DQN, DDQN, Dueling DQN, PER+DQN, Noisy DQN, C51

deep-Q-networks

Implementation of algorithms from the Q-learning family

Check /ipynb for jupiter notebooks of implementations

Implemented:

  • Vanilla DQN
  • Double DQN
  • Dueling DQN
  • Prioritized experience replay + DDQN
  • Noisy DQN (in progress)
  • C51 Categorical DQN (in progress)
  • DRQN with Gated Recurrent Units (in progress)

Dependencies:

  • PyTorch = 0.4.1
  • Python = 3.6
  • Gym = 0.12.5

Associated Papers:

To be added