gym-mazeexplorer

A maze exploration environment for openai/gym


Keywords
maze, game, maze-explorer, openaigym, openai-gym, openai-gym-environments
License
MIT
Install
pip install gym-mazeexplorer==0.0.4

Documentation

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{king2017mazeexplorer,
    author = {King},
    title = {Maze Explorer: A maze exploration game for AI agents},
    howpublished={Web page},
    url = {https://github.com/mryellow/maze_explorer},
    year = {2017}
}