Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mryellow/gym-mazeexplorer
Maze Exploration OpenAIGym environment
https://github.com/mryellow/gym-mazeexplorer
maze maze-explorer openai-gym openai-gym-environments
Last synced: 2 months ago
JSON representation
Maze Exploration OpenAIGym environment
- Host: GitHub
- URL: https://github.com/mryellow/gym-mazeexplorer
- Owner: mryellow
- License: mit
- Created: 2017-07-21T01:27:20.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-08-30T23:40:59.000Z (over 5 years ago)
- Last Synced: 2024-10-07T19:46:20.339Z (4 months ago)
- Topics: maze, maze-explorer, openai-gym, openai-gym-environments
- Language: Python
- Size: 23.4 KB
- Stars: 6
- Watchers: 4
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# gym-mazeexplorer
A maze exploration environment for OpenAIGym wrapping [maze_explorer](https://github.com/mryellow/maze_explorer).
## Installation
### Source
```bash
git clone https://github.com/mryellow/gym-mazeexplorer.git
cd gym-mazeexplorer
pip install -e .
```### Package
```bash
pip install gym-mazeexplorer
```## Quick example
```python
import gym
import gym_mazeexplorerenv = 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
```bash
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}
}
```