fancy_gym/README.md

38 lines
1013 B
Markdown
Raw Normal View History

2020-08-28 18:46:19 +02:00
## ALR Custom Environments
2020-08-28 15:58:12 +02:00
2020-08-28 18:46:19 +02:00
This repository collects custom RL envs not included in Suits like OpenAI gym, rllab, etc.
Creating a custom (Mujoco) gym environement can be done according to this guide: https://github.com/openai/gym/blob/master/docs/creating-environments.md
2020-08-28 15:58:12 +02:00
2020-08-28 18:46:19 +02:00
## Environments
Currently we have the following environements:
2020-08-28 15:58:12 +02:00
2020-08-28 18:46:19 +02:00
### Mujoco
|Name| Description|
|---|---|
|`ALRReacher-v0`|modification (5 links) of Mujoco Gym's Reacher (2 links)|
2020-08-28 15:58:12 +02:00
2020-08-28 18:46:19 +02:00
### Classic Control
|Name| Description|
|---|---|
|`SimpleReacher-v0`| Simple Reaching Task without any physics simulation. Returns no reward until 150 time steps. This allows the agent to explore the space, but requires precise actions towards the end of the trajectory.|
## INSTALL
1. Clone the repository
```bash
git clone git@github.com:ALRhub/alr_envs.git
```
2. Go to the folder
```bash
cd alr_envs
```
3. Install with
```bash
pip install -e .
```
4. Use (see example.py):
```python
env = gym.make('alr_envs:SimpleReacher-v0')
```