You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
sp 53d3b3413d added playground env for HW11 1 week ago
..
_scripts Framework for HW11 1 week ago
_static Framework for HW11 1 week ago
api Framework for HW11 1 week ago
content Framework for HW11 1 week ago
environments Framework for HW11 1 week ago
404.md Framework for HW11 1 week ago
LICENSE Framework for HW11 1 week ago
Makefile Framework for HW11 1 week ago
README.md Framework for HW11 1 week ago
conf.py Framework for HW11 1 week ago
index.md Framework for HW11 1 week ago
make.bat Framework for HW11 1 week ago
release_notes.md Framework for HW11 1 week ago
requirements.txt Framework for HW11 1 week ago

README.md

MiniGrid documentation

This folder contains the documentation for MiniGrid.

For more information about how to contribute to the documentation go to our CONTRIBUTING.md

Editing an environment page

If you are editing an Atari environment, directly edit the Markdown file in this repository.

Otherwise, fork Gym and edit the docstring in the environment's Python file. Then, pip install your Gym fork and run docs/_scripts/gen_env_docs.py in this repo. This will automatically generate a md documentation file for the environment.

Build the Documentation

Install the required packages and Minigrid:

pip install -r docs/requirements.txt
pip install -e .

To build the documentation once:

cd docs
make dirhtml

To rebuild the documentation automatically every time a change is made:

cd docs
sphinx-autobuild -b dirhtml . _build