obstacle-env

An environment for an obstacle avoidance task

MIT License

Stars
32

obstacle-env

An environment for obstacle avoidance tasks

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