The source code and dockerfile for the GSW2024 AI Lab.
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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 
 
 
 
 
sp 2b074b7162 added slides pdf 3 weeks ago
..
_scripts initial commit 4 weeks ago
_static initial commit 4 weeks ago
api initial commit 4 weeks ago
content initial commit 4 weeks ago
environments initial commit 4 weeks ago
404.md initial commit 4 weeks ago
LICENSE initial commit 4 weeks ago
Makefile initial commit 4 weeks ago
README.md initial commit 4 weeks ago
conf.py initial commit 4 weeks ago
index.md initial commit 4 weeks ago
make.bat initial commit 4 weeks ago
release_notes.md initial commit 4 weeks ago
requirements.txt initial commit 4 weeks 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