• Stars
    star
    132
  • Rank 272,591 (Top 6 %)
  • Language
    Python
  • License
    MIT License
  • Created over 7 years ago
  • Updated over 1 year ago

Reviews

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

Repository Details

Atari - Deep Reinforcement Learning algorithms in TensorFlow

Atari - Deep Reinforcement Learning algorithms in TensorFlow

Build Status

Learning to play Atari in TensorFlow using Deep Reinforcement Learning

Setup

git clone https://github.com/brendanator/atari-rl
git submodule update --init
conda create --name atari-rl python=3.5
source activate atari-rl
conda install -y -c https://conda.binstar.org/menpo opencv3
conda install -y h5py numpy
pip install tensorflow
pip install 'gym[atari]'

Python 2.7 is also supported

Usage

  • Show all options - python main.py --help
  • Play a specific Atari game - python main.py --game Breakout

Papers Implemented

Acknowledgements