All Projects → eleurent → obstacle-env

eleurent / obstacle-env

Licence: MIT license
An environment for an obstacle avoidance task

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to obstacle-env

gym-cryptotrading
OpenAI Gym Environment API based Bitcoin trading environment
Stars: ✭ 111 (+270%)
Mutual labels:  gym-environment
trading gym
a unified environment for supervised learning and reinforcement learning in the context of quantitative trading
Stars: ✭ 36 (+20%)
Mutual labels:  gym-environment
Space-Time-AStar
A* Search Algorithm with an Additional Time Dimension to Deal with Dynamic Obstacles
Stars: ✭ 80 (+166.67%)
Mutual labels:  obstacle-avoidance
panther
Perception-Aware Trajectory Planner in Dynamic Environments
Stars: ✭ 115 (+283.33%)
Mutual labels:  obstacle-avoidance
gym-mtsim
A general-purpose, flexible, and easy-to-use simulator alongside an OpenAI Gym trading environment for MetaTrader 5 trading platform (Approved by OpenAI Gym)
Stars: ✭ 196 (+553.33%)
Mutual labels:  gym-environment
dqn-obstacle-avoidance
Deep Reinforcement Learning for Fixed-Wing Flight Control with Deep Q-Network
Stars: ✭ 57 (+90%)
Mutual labels:  obstacle-avoidance
Optical-Flow-based-Obstacle-Avoidance
Image based obstacle avoidance using optical flow
Stars: ✭ 24 (-20%)
Mutual labels:  obstacle-avoidance
gym example
An example implementation of an OpenAI Gym environment used for a Ray RLlib tutorial
Stars: ✭ 25 (-16.67%)
Mutual labels:  gym-environment
Underwater-obstacle-avoidance
The underwater robot obstacle avoidance project with the method of deep reinforcement learning
Stars: ✭ 23 (-23.33%)
Mutual labels:  obstacle-avoidance
car-racing
A toolkit for testing control and planning algorithm for car racing.
Stars: ✭ 30 (+0%)
Mutual labels:  obstacle-avoidance
Quadcopter multi
(Complete). An open-architecture multi-agent quadcopter simulator. We implement a few modern techniques for improving the performance of aerial vehicles, including reinforcement learning and shifting planar inequalities for obstacle avoidance.
Stars: ✭ 16 (-46.67%)
Mutual labels:  obstacle-avoidance
mader
Trajectory Planner in Multi-Agent and Dynamic Environments
Stars: ✭ 252 (+740%)
Mutual labels:  obstacle-avoidance
Neural-Fictitous-Self-Play
Scalable Implementation of Neural Fictitous Self-Play
Stars: ✭ 52 (+73.33%)
Mutual labels:  gym-environment
2048-Gym
This projects aims to use reinforcement learning algorithms to play the game 2048.
Stars: ✭ 68 (+126.67%)
Mutual labels:  gym-environment
stadium
A graphical interface for reinforcement learning and gym-based environments. Integrates tensorboard and various configuration utilities for ease of usage.
Stars: ✭ 26 (-13.33%)
Mutual labels:  gym-environment
MuJoCo RL UR5
A MuJoCo/Gym environment for robot control using Reinforcement Learning. The task of agents in this environment is pixel-wise prediction of grasp success chances.
Stars: ✭ 108 (+260%)
Mutual labels:  gym-environment
mgym
A collection of multi-agent reinforcement learning OpenAI gym environments
Stars: ✭ 41 (+36.67%)
Mutual labels:  gym-environment
gym-microrts-paper-sb3
RL agent to play μRTS with Stable-Baselines3 and PyTorch
Stars: ✭ 21 (-30%)
Mutual labels:  gym-environment
rocket-league-gym
A Gym-like environment for Reinforcement Learning in Rocket League
Stars: ✭ 107 (+256.67%)
Mutual labels:  gym-environment

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()
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].