"router/src/infer/v2/scheduler.rs" did not exist on "db2b4e07544a238428999ab4a2509758eeee422c"
README.md 740 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
Code for performing Hierarchical RL based on
"Data-Efficient Hierarchical Reinforcement Learning" by
Ofir Nachum, Shixiang (Shane) Gu, Honglak Lee, and Sergey Levine
(https://arxiv.org/abs/1805.08296).


This library currently includes three of the environments used:
Ant Maze, Ant Push, and Ant Fall.

The training code is planned to be open-sourced at a later time.


Requirements:
* TensorFlow (see http://www.tensorflow.org for how to install/upgrade)
* OpenAI Gym (see http://gym.openai.com/docs, be sure to install MuJoCo as well)
* NumPy (see http://www.numpy.org/)


Quick Start:

Run a random policy on AntMaze (or AntPush, AntFall):

```
python environments/__init__.py --env=AntMaze
```


Maintained by Ofir Nachum (ofirnachum).