minigrid


Nameminigrid JSON
Version 2.3.0 PyPI version JSON
download
home_page
SummaryMinimalistic gridworld reinforcement learning environments.
upload_time2023-06-09 12:21:48
maintainer
docs_urlNone
author
requires_python>=3.7
licenseMIT License
keywords memory environment agent rl gymnasium
VCS
bugtrack_url
requirements numpy gymnasium pygame
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <p align="center">
    <img src="https://raw.githubusercontent.com/Farama-Foundation/Minigrid/master/minigrid-text.png" width="500px"/>
</p>

[![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white)](https://pre-commit.com/)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)

<p align="center">
  <img src="figures/door-key-curriculum.gif" width=200 alt="Figure Door Key Curriculum">
</p>

The Minigrid library contains a collection of discrete grid-world environments to conduct research on Reinforcement Learning. The environments follow the [Gymnasium]() standard API and they are designed to be lightweight, fast, and easily customizable. 

The documentation website is at [minigrid.farama.org](https://minigrid.farama.org/), and we have a public discord server (which we also use to coordinate development work) that you can join here: [https://discord.gg/bnJ6kubTg6](https://discord.gg/bnJ6kubTg6)

Note that the library was previously known as gym-minigrid and it has been referenced in several publications. If your publication uses the Minigrid library and you wish for it to be included in the [list of publications](https://minigrid.farama.org/content/publications/), please create an issue in the [GitHub repository](https://github.com/Farama-Foundation/Minigrid/issues/new/choose).


# Installation

To install the Minigrid library use `pip install minigrid`.

We support Python 3.7, 3.8, 3.9 and 3.10 on Linux and macOS. We will accept PRs related to Windows, but do not officially support it.

# Environments
The included environments can be divided in two groups. The original `Minigrid` environments and the `BabyAI` environments. 

## Minigrid
The list of the environments that were included in the original `Minigrid` library can be found in the [documentation](https://minigrid.farama.org/environments/minigrid/). These environments have in common a triangle-like agent with a discrete action space that has to navigate a 2D map with different obstacles (Walls, Lava, Dynamic obstacles) depending on the environment. The task to be accomplished is described by a `mission` string returned by the observation of the agent. These mission tasks include different goal-oriented and hierarchical missions such as picking up boxes, opening doors with keys or navigating a maze to reach a goal location. Each environment provides one or more configurations registered with Gymansium. Each environment is also programmatically tunable in terms of size/complexity, which is useful for curriculum learning or to fine-tune difficulty.

## BabyAI
These environments have been imported from the [BabyAI](https://github.com/mila-iqia/babyai) project library and the list of environments can also be found in the [documentation](https://minigrid.farama.org/environments/babyai/). The purpose of this collection of environments is to perform research on grounded language learning. The environments are derived from the `Minigrid` grid-world environments and include an additional functionality that generates synthetic
natural-looking instructions (e.g. “put the red ball next to the box on your left”) that command the the agent to navigate the world (including unlocking doors) and move objects to specified locations in order to accomplish the task.

# Training an Agent
The [rl-starter-files](https://github.com/lcswillems/torch-rl) is a repository with examples on how to train `Minigrid` environments with RL algorithms. This code has been tested and is known to work with this environment. The default hyper-parameters are also known to converge. 

# Citation

The original `gym-minigrid` environments were created as part of work done at [Mila](https://mila.quebec). The Dynamic obstacles environment were added as part of work done at [IAS in TU Darmstadt](https://www.ias.informatik.tu-darmstadt.de/) and the University of Genoa for mobile robot navigation with dynamic obstacles.

To cite this project please use:

```
@software{minigrid,
  author = {Chevalier-Boisvert, Maxime and Willems, Lucas and Pal, Suman},
  title = {Minimalistic Gridworld Environment for Gymnasium},
  url = {https://github.com/Farama-Foundation/Minigrid},
  year = {2018},
}
```

If using the `BabyAI` environments please also cite the following:

```
@article{chevalier2018babyai,
  title={Babyai: A platform to study the sample efficiency of grounded language learning},
  author={Chevalier-Boisvert, Maxime and Bahdanau, Dzmitry and Lahlou, Salem and Willems, Lucas and Saharia, Chitwan and Nguyen, Thien Huu and Bengio, Yoshua},
  journal={arXiv preprint arXiv:1810.08272},
  year={2018}
}
```

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "minigrid",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "Memory, Environment, Agent, RL, Gymnasium",
    "author": "",
    "author_email": "Farama Foundation <contact@farama.org>",
    "download_url": "https://files.pythonhosted.org/packages/df/72/0cab4cb1f68d402c29764255941d71ef92d7a7bc0b0e29990ca1d19ec921/minigrid-2.3.0.tar.gz",
    "platform": null,
    "description": "<p align=\"center\">\n    <img src=\"https://raw.githubusercontent.com/Farama-Foundation/Minigrid/master/minigrid-text.png\" width=\"500px\"/>\n</p>\n\n[![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white)](https://pre-commit.com/)\n[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)\n\n<p align=\"center\">\n  <img src=\"figures/door-key-curriculum.gif\" width=200 alt=\"Figure Door Key Curriculum\">\n</p>\n\nThe Minigrid library contains a collection of discrete grid-world environments to conduct research on Reinforcement Learning. The environments follow the [Gymnasium]() standard API and they are designed to be lightweight, fast, and easily customizable. \n\nThe documentation website is at [minigrid.farama.org](https://minigrid.farama.org/), and we have a public discord server (which we also use to coordinate development work) that you can join here: [https://discord.gg/bnJ6kubTg6](https://discord.gg/bnJ6kubTg6)\n\nNote that the library was previously known as gym-minigrid and it has been referenced in several publications. If your publication uses the Minigrid library and you wish for it to be included in the [list of publications](https://minigrid.farama.org/content/publications/), please create an issue in the [GitHub repository](https://github.com/Farama-Foundation/Minigrid/issues/new/choose).\n\n\n# Installation\n\nTo install the Minigrid library use `pip install minigrid`.\n\nWe support Python 3.7, 3.8, 3.9 and 3.10 on Linux and macOS. We will accept PRs related to Windows, but do not officially support it.\n\n# Environments\nThe included environments can be divided in two groups. The original `Minigrid` environments and the `BabyAI` environments. \n\n## Minigrid\nThe list of the environments that were included in the original `Minigrid` library can be found in the [documentation](https://minigrid.farama.org/environments/minigrid/). These environments have in common a triangle-like agent with a discrete action space that has to navigate a 2D map with different obstacles (Walls, Lava, Dynamic obstacles) depending on the environment. The task to be accomplished is described by a `mission` string returned by the observation of the agent. These mission tasks include different goal-oriented and hierarchical missions such as picking up boxes, opening doors with keys or navigating a maze to reach a goal location. Each environment provides one or more configurations registered with Gymansium. Each environment is also programmatically tunable in terms of size/complexity, which is useful for curriculum learning or to fine-tune difficulty.\n\n## BabyAI\nThese environments have been imported from the [BabyAI](https://github.com/mila-iqia/babyai) project library and the list of environments can also be found in the [documentation](https://minigrid.farama.org/environments/babyai/). The purpose of this collection of environments is to perform research on grounded language learning. The environments are derived from the `Minigrid` grid-world environments and include an additional functionality that generates synthetic\nnatural-looking instructions (e.g. \u201cput the red ball next to the box on your left\u201d) that command the the agent to navigate the world (including unlocking doors) and move objects to specified locations in order to accomplish the task.\n\n# Training an Agent\nThe [rl-starter-files](https://github.com/lcswillems/torch-rl) is a repository with examples on how to train `Minigrid` environments with RL algorithms. This code has been tested and is known to work with this environment. The default hyper-parameters are also known to converge. \n\n# Citation\n\nThe original `gym-minigrid` environments were created as part of work done at [Mila](https://mila.quebec). The Dynamic obstacles environment were added as part of work done at [IAS in TU Darmstadt](https://www.ias.informatik.tu-darmstadt.de/) and the University of Genoa for mobile robot navigation with dynamic obstacles.\n\nTo cite this project please use:\n\n```\n@software{minigrid,\n  author = {Chevalier-Boisvert, Maxime and Willems, Lucas and Pal, Suman},\n  title = {Minimalistic Gridworld Environment for Gymnasium},\n  url = {https://github.com/Farama-Foundation/Minigrid},\n  year = {2018},\n}\n```\n\nIf using the `BabyAI` environments please also cite the following:\n\n```\n@article{chevalier2018babyai,\n  title={Babyai: A platform to study the sample efficiency of grounded language learning},\n  author={Chevalier-Boisvert, Maxime and Bahdanau, Dzmitry and Lahlou, Salem and Willems, Lucas and Saharia, Chitwan and Nguyen, Thien Huu and Bengio, Yoshua},\n  journal={arXiv preprint arXiv:1810.08272},\n  year={2018}\n}\n```\n",
    "bugtrack_url": null,
    "license": "MIT License",
    "summary": "Minimalistic gridworld reinforcement learning environments.",
    "version": "2.3.0",
    "project_urls": {
        "Bug Report": "https://github.com/Farama-Foundation/Minigrid/issues",
        "Documentation": "https://minigrid.farama.org/",
        "Homepage": "https://farama.org",
        "Repository": "https://minigrid.farama.org/"
    },
    "split_keywords": [
        "memory",
        " environment",
        " agent",
        " rl",
        " gymnasium"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "378f7605a2e4ce718c87d0d5ae24c6bfcb80fb0724a0a19dfd4fd09819394bf0",
                "md5": "298d8664870d1919d2759265a8bdf9b0",
                "sha256": "50c9642581fe7c1a244e406ad927b3e4b6dbe724e10a9c3f7b9b0c5ecdb38e7f"
            },
            "downloads": -1,
            "filename": "minigrid-2.3.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "298d8664870d1919d2759265a8bdf9b0",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 103081,
            "upload_time": "2023-06-09T12:21:46",
            "upload_time_iso_8601": "2023-06-09T12:21:46.601353Z",
            "url": "https://files.pythonhosted.org/packages/37/8f/7605a2e4ce718c87d0d5ae24c6bfcb80fb0724a0a19dfd4fd09819394bf0/minigrid-2.3.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "df720cab4cb1f68d402c29764255941d71ef92d7a7bc0b0e29990ca1d19ec921",
                "md5": "02960ee0d16621f47083cfd52c9006f8",
                "sha256": "c7e00dd30e3c6e4eb74e5eeda531e498dddc64089f73f84a3377840946572cd4"
            },
            "downloads": -1,
            "filename": "minigrid-2.3.0.tar.gz",
            "has_sig": false,
            "md5_digest": "02960ee0d16621f47083cfd52c9006f8",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 73882,
            "upload_time": "2023-06-09T12:21:48",
            "upload_time_iso_8601": "2023-06-09T12:21:48.426915Z",
            "url": "https://files.pythonhosted.org/packages/df/72/0cab4cb1f68d402c29764255941d71ef92d7a7bc0b0e29990ca1d19ec921/minigrid-2.3.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-06-09 12:21:48",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "Farama-Foundation",
    "github_project": "Minigrid",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "numpy",
            "specs": [
                [
                    ">=",
                    "1.18.0"
                ]
            ]
        },
        {
            "name": "gymnasium",
            "specs": [
                [
                    ">=",
                    "0.26"
                ]
            ]
        },
        {
            "name": "pygame",
            "specs": [
                [
                    ">=",
                    "2.2.0"
                ]
            ]
        }
    ],
    "test_requirements": [
        {
            "name": "pytest",
            "specs": [
                [
                    ">=",
                    "7.0.1"
                ]
            ]
        },
        {
            "name": "pytest-mock",
            "specs": [
                [
                    ">=",
                    "3.10.0"
                ]
            ]
        }
    ],
    "lcname": "minigrid"
}
        
Elapsed time: 0.07532s