GitXplorerGitXplorer
q

gym-continuous-maze

public
6 stars
4 forks
0 issues

Commits

List of commits on branch main.
Unverified
8292fadb2ec1578948d9ce1a64c9e0b273de68d6

fix no device sdl

qqgallouedec committed 3 years ago
Unverified
b625ed937811c0e9052e1cabd88ba91fddae230c

100 timesteps max

qqgallouedec committed 3 years ago
Unverified
3329ece07e368b839f9f5dc6753b7110d65835b9

2nd correction of intersect case

qqgallouedec committed 3 years ago
Unverified
2a0871f09b5438d856f16de489c816971933a724

fix not interesect case

qqgallouedec committed 3 years ago
Unverified
60242ec24efa735dc6d84af48c609d8162f98118

Set all_pos public attribut

qqgallouedec committed 3 years ago
Unverified
ceee98ae3e23acc975b7cb42d449839bf602cae8

typo

qqgallouedec committed 3 years ago

README

The README file for this repository.

gym-continuous-maze

Continuous maze environment integrated with OpenAI/Gym

Installation

Clone the repository and run

cd gym-continuous-maze
pip install -e .

Usage

import gym
import gym_continuous_maze

env = gym.make("ContinuousMaze-v0")
env.reset()
done = False
while not done:
    action = env.action_space.sample() # random action
    obs, reward, done, info = env.step(action)
    env.render()