Skip to content

colinmccormick/TinyMaze

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

TinyMaze

A very simple shell-based maze game. Useful for traing simple reinforcement learning algorithms. To play:

$ python TinyMaze.py maze_size

where "maze_size" is an integer such that the maze will be maze_size x maze_size squares.

To use in reinforcement learning:

import TinyMaze
moves = ["a", "s", "w", "z"]
game = TinyMaze.TinyMazeEnv(maze_size)
status = game.step(moves[move_index])

About

A very simple command-line maze game.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages