Skip to content

AdamStelmaszczyk/rl-tutorial

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build Status

TensorFlow & Keras implementation of DQN.

Install

  1. Clone this repo: git clone https://github.com/AdamStelmaszczyk/rl-tutorial.git.
  2. Install conda for dependency management.
  3. Create tutorial conda environment: conda create -n tutorial python=3.6.5 -y.
  4. Activate tutorial conda environment: source activate tutorial. All the following commands should be run in the activated tutorial environment.
  5. Install basic dependencies: pip install -r requirements.txt.

There is an automatic build on Travis which does the same.

Uninstall

  1. Deactivate conda environment: source deactivate.
  2. Remove tutorial conda environment: conda env remove -n tutorial -y.

Links