tensorflow-deepq icon indicating copy to clipboard operation
tensorflow-deepq copied to clipboard

Add redis to requirements in README

Open MartinThoma opened this issue 9 years ago • 3 comments

Redis is required by tf_rl/controller/human_controller.py

MartinThoma avatar Dec 25 '15 07:12 MartinThoma

sudo apt-get install redis-server sudo service redis-server start (or sudo service redis-server restart)

imcomking avatar Feb 17 '16 15:02 imcomking

if you want simulate HumanController, you should add some codes in human_controller.py first.

import sys, os
sys.path.append(os.path.abspath('../..'))

python human_controller.py and push some keyboard actions (i.e w,a,s,d) then run the ipython notebook "karpathy_game.ipynb"

imcomking avatar Feb 17 '16 16:02 imcomking

+1

Also due to the absolute importing, it now only works if you copy the human_controller.py to the project root

lsqshr avatar Jun 07 '16 02:06 lsqshr