• Stars
    star
    210
  • Rank 187,037 (Top 4 %)
  • Language
    Jupyter Notebook
  • Created over 6 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

Tensorflow implementation of Deepminds dqn with double dueling networks

Double Deep Q-Learning with Dueling Network Architecture

You find detailed explanations on the functional and underlying priciples of DQN in the notebook DQN.ipynb and the corresponding blogpost.

Requirements

  • tensorflow-gpu
  • gym
  • gym[atari] (make sure it is version 0.10.5 or higher/has BreakoutDeterministic-v4)
  • imageio
  • scikit-image

Try it yourself:

If you want to test the trained network, simply run the notebook DQN.ipynb.

If you want to train the network yourself, set TRAIN = True in the first cell of DQN.ipynb and run the notebook.

Have fun : )