obstacle-env icon indicating copy to clipboard operation
obstacle-env copied to clipboard

An environment for an obstacle avoidance task

obstacle-env

An environment for obstacle avoidance tasks


A few episodes of the environment.

Build Status

Installation

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

Usage

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()