An open API service indexing awesome lists of open source software.

https://github.com/eleurent/obstacle-env

An environment for an obstacle avoidance task
https://github.com/eleurent/obstacle-env

gym-environment obstacle-avoidance reinforcement-learning

Last synced: 4 months ago
JSON representation

An environment for an obstacle avoidance task

Awesome Lists containing this project

README

          

# obstacle-env

An environment for *obstacle avoidance* tasks




A few episodes of the environment.

[![Build Status](https://travis-ci.org/eleurent/obstacle-env.svg?branch=master)](https://travis-ci.org/eleurent/obstacle-env)

## Installation

`pip install --user git+https://github.com/eleurent/obstacle-env`

## Usage

```python
import obstacle_env

env = gym.make("obstacle-v0")

done = False
while not done:
action = ... # Your agent code here
obs, reward, done, _ = env.step(action)
env.render()
```