Skip to content

Latest commit

 

History

History
59 lines (50 loc) · 3.1 KB

README.md

File metadata and controls

59 lines (50 loc) · 3.1 KB

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