Skip to content

An environment for an obstacle avoidance task

License

Notifications You must be signed in to change notification settings

dlml/obstacle-env

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

64 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

An environment for an obstacle avoidance task

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%