mryellow / gym-mazeexplorer

Maze Exploration OpenAIGym environment
MIT License
6 stars 2 forks source link
maze maze-explorer openai-gym openai-gym-environments

gym-mazeexplorer

A maze exploration environment for OpenAIGym wrapping maze_explorer.

Installation

Source

git clone https://github.com/mryellow/gym-mazeexplorer.git
cd gym-mazeexplorer
pip install -e .

Package

pip install gym-mazeexplorer

Quick example


  import gym
  import gym_mazeexplorer

  env = gym.make('MazeExplorer-v0')
  env.reset()

  for _ in range(50):
    env.render()
    action = env.action_space.sample()
    observation, reward, done, info = env.step(action)

Test

python -m unittest discover

Cite

If you use Maze Explorer in your academic research, we would be grateful if you could cite it as follows:

@misc{mryellow2017mazeexplorer,
    author = {Mr-Yellow},
    title = {Maze Explorer: A maze exploration game for AI agents},
    howpublished={Web page},
    url = {https://github.com/mryellow/maze_explorer},
    year = {2017}
}