Skip to content

Commit

Permalink
docs: Reference paper added
Browse files Browse the repository at this point in the history
  • Loading branch information
angelmtenor committed Jul 5, 2017
1 parent 75ec762 commit 76afed1
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# RL-ROBOT
This repository provides a Reinforcement Learning framework in Python from the Machine Perception and Intelligent Robotics research group [(MAPIR)](http://mapir.isa.uma.es).

Reference paper "Towards a common implementation of reinforcement learning for multiple robotics tasks" (under revision)
Reference paper: Towards a common implementation of reinforcement learning for multiple robotics tasks" [(arxiv)](https://arxiv.org/pdf/1702.06329.pdf)

### Requirements
* Python >= 3.4
Expand All @@ -13,21 +13,21 @@ Tested on Ubuntu 14.04 and 16.04 (64 bits).

### Try RL-ROBOT:
~~~
>>> import exp
>>> import rlrobot
import exp
import rlrobot
>>> exp.ENVIRONMENT_TYPE = "MODEL"
>>> exp.TASK_ID = "wander_1k"
>>> exp.FILE_MODEL = exp.TASK_ID + "_model"
>>> exp.ALGORITHM = "TOSL"
>>> exp.ACTION_STRATEGY = "QBIASSR"
>>> exp.N_REPETITIONS = 1
>>> exp.N_EPISODES = 1
>>> exp.N_STEPS = 60 * 60
exp.ENVIRONMENT_TYPE = "MODEL"
exp.TASK_ID = "wander_1k"
exp.FILE_MODEL = exp.TASK_ID + "_model"
exp.ALGORITHM = "TOSL"
exp.ACTION_STRATEGY = "QBIASSR"
>>> exp.DISPLAY_STEP = 500
exp.N_REPETITIONS = 1
exp.N_EPISODES = 1
exp.N_STEPS = 60 * 60
exp.DISPLAY_STEP = 500
>>> rlrobot.run()
~~~
Expand Down

0 comments on commit 76afed1

Please sign in to comment.