blocksworld3d


Nameblocksworld3d JSON
Version 0.2.1 PyPI version JSON
download
home_pagehttps://github.com/ethanmclark1/blocksworld3d
SummaryMinimalistic 3D blocksworld environment simulator for reinforcement learning & robotics research.
upload_time2023-08-19 19:06:49
maintainer
docs_urlNone
authorEthan Clark
requires_python>=3.7, <3.11
licenseApache
keywords environment agent rl gym robotics 3d
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # An Extension of MiniWorld

blocksworld3d is an enhancement on top of the MiniWorld environment, specifically focusing on the RoomObjects scenario. It's an open-source research project aimed at advancing the development of spatial reasoning and manipulation strategies in robotic systems.

# Blocksworld3D

blocksworld3d proposes a unique 3D environment that simulates the classic blocksworld problem except with an additional row of blocks. With various problem instances introducing different constraints on block positioning, start points, goals, and obstacles, this dynamic aspect fosters the exploration of spatial strategies in diverse settings.

The environment is minimalistic and designed for reinforcement learning & robotics research. It's compatible with the MiniWorld API, providing a seamless integration with existing toolsets.

## Installation

Install from ``PyPi`` using:

``pip install blocksworld3d``

Or install from the source using:

```
git clone https://github.com/ethanmclark1/blocksworld3d.git
cd blocksworld3d
pip install -r requirements.txt
pip install -e .
```

## Usage

```
import blocksworld3d

env = blocksworld3d.env()
env.reset(options={'problem_instance': 'stacking'}))
observation, _, terminations, truncations, _ = env.last()
env.step(action)
env.close()
```

## List of Problem Instances

| Problem Instance | Visualization                                                  |
| ---------------- | -------------------------------------------------------------- |
| `stacking`     | ![stacking](https://chat.openai.com/image/README/stacking.png)   |
| `sorting`      | ![sorting](https://chat.openai.com/image/README/sorting.png)     |
| `arranging`    | ![arranging](https://chat.openai.com/image/README/arranging.png) |
| ...              | ...                                                            |

> **Note** : Customize the table above with the specific problem instances and visualization images relevant to your project.

## Contributing

We welcome contributions to blocksworld3d! Whether it's bug reports, feature requests, or pull requests, your collaboration helps make blocksworld3d better.

## Support

If you have questions or need support, please contact us at [eclark715@gmail.com](mailto:eclark715@gmail.com), or create an issue in the GitHub repository.

## License

blocksworld3d is open-source software licensed under the [MIT license](https://chat.openai.com/LINK_TO_YOUR_LICENSE).

## Paper Citation

If you found this environment helpful, consider citing relevant papers. Here's an example citation for the original MiniWorld environment:

<pre>
@article{MinigridMiniworld23,
  author={Maxime Chevalier-Boisvert and Bolun Dai and Mark Towers and Rodrigo de Lazcano and Lucas Willems and Salem Lahlou and Suman Pal and Pablo Samuel Castro and Jordan Terry},
  title={Minigrid & Miniworld: Modular & Customizable Reinforcement Learning Environments for Goal-Oriented Tasks},
  journal={CoRR},
  volume={abs/2306.13831}
  year={2023}
}
</pre>

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/ethanmclark1/blocksworld3d",
    "name": "blocksworld3d",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7, <3.11",
    "maintainer_email": "",
    "keywords": "Environment,Agent,RL,Gym,Robotics,3D",
    "author": "Ethan Clark",
    "author_email": "eclark715@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/8a/f7/4a4ace5e28de352e8ebcd57d127fcb29fb24704a50faef32e60006b97620/blocksworld3d-0.2.1.tar.gz",
    "platform": null,
    "description": "# An Extension of MiniWorld\r\n\r\nblocksworld3d is an enhancement on top of the MiniWorld environment, specifically focusing on the RoomObjects scenario. It's an open-source research project aimed at advancing the development of spatial reasoning and manipulation strategies in robotic systems.\r\n\r\n# Blocksworld3D\r\n\r\nblocksworld3d proposes a unique 3D environment that simulates the classic blocksworld problem except with an additional row of blocks. With various problem instances introducing different constraints on block positioning, start points, goals, and obstacles, this dynamic aspect fosters the exploration of spatial strategies in diverse settings.\r\n\r\nThe environment is minimalistic and designed for reinforcement learning & robotics research. It's compatible with the MiniWorld API, providing a seamless integration with existing toolsets.\r\n\r\n## Installation\r\n\r\nInstall from ``PyPi`` using:\r\n\r\n``pip install blocksworld3d``\r\n\r\nOr install from the source using:\r\n\r\n```\r\ngit clone https://github.com/ethanmclark1/blocksworld3d.git\r\ncd blocksworld3d\r\npip install -r requirements.txt\r\npip install -e .\r\n```\r\n\r\n## Usage\r\n\r\n```\r\nimport blocksworld3d\r\n\r\nenv = blocksworld3d.env()\r\nenv.reset(options={'problem_instance': 'stacking'}))\r\nobservation, _, terminations, truncations, _ = env.last()\r\nenv.step(action)\r\nenv.close()\r\n```\r\n\r\n## List of Problem Instances\r\n\r\n| Problem Instance | Visualization                                                  |\r\n| ---------------- | -------------------------------------------------------------- |\r\n| `stacking`     | ![stacking](https://chat.openai.com/image/README/stacking.png)   |\r\n| `sorting`      | ![sorting](https://chat.openai.com/image/README/sorting.png)     |\r\n| `arranging`    | ![arranging](https://chat.openai.com/image/README/arranging.png) |\r\n| ...              | ...                                                            |\r\n\r\n> **Note** : Customize the table above with the specific problem instances and visualization images relevant to your project.\r\n\r\n## Contributing\r\n\r\nWe welcome contributions to blocksworld3d! Whether it's bug reports, feature requests, or pull requests, your collaboration helps make blocksworld3d better.\r\n\r\n## Support\r\n\r\nIf you have questions or need support, please contact us at [eclark715@gmail.com](mailto:eclark715@gmail.com), or create an issue in the GitHub repository.\r\n\r\n## License\r\n\r\nblocksworld3d is open-source software licensed under the [MIT license](https://chat.openai.com/LINK_TO_YOUR_LICENSE).\r\n\r\n## Paper Citation\r\n\r\nIf you found this environment helpful, consider citing relevant papers. Here's an example citation for the original MiniWorld environment:\r\n\r\n<pre>\r\n@article{MinigridMiniworld23,\r\n  author={Maxime Chevalier-Boisvert and Bolun Dai and Mark Towers and Rodrigo de Lazcano and Lucas Willems and Salem Lahlou and Suman Pal and Pablo Samuel Castro and Jordan Terry},\r\n  title={Minigrid & Miniworld: Modular & Customizable Reinforcement Learning Environments for Goal-Oriented Tasks},\r\n  journal={CoRR},\r\n  volume={abs/2306.13831}\r\n  year={2023}\r\n}\r\n</pre>\r\n",
    "bugtrack_url": null,
    "license": "Apache",
    "summary": "Minimalistic 3D blocksworld environment simulator for reinforcement learning & robotics research.",
    "version": "0.2.1",
    "project_urls": {
        "Homepage": "https://github.com/ethanmclark1/blocksworld3d"
    },
    "split_keywords": [
        "environment",
        "agent",
        "rl",
        "gym",
        "robotics",
        "3d"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a3f6a8acc9dfbba70e6be2bc20db44a390ad5ed977d685a404c22ddd491c3bad",
                "md5": "574d53bcc5726412ab153cf2256a411f",
                "sha256": "af099228b587dbf99a887cea2c1c183917f97256955a072b1421a56b40551b70"
            },
            "downloads": -1,
            "filename": "blocksworld3d-0.2.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "574d53bcc5726412ab153cf2256a411f",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7, <3.11",
            "size": 2227835,
            "upload_time": "2023-08-19T19:06:42",
            "upload_time_iso_8601": "2023-08-19T19:06:42.801450Z",
            "url": "https://files.pythonhosted.org/packages/a3/f6/a8acc9dfbba70e6be2bc20db44a390ad5ed977d685a404c22ddd491c3bad/blocksworld3d-0.2.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8af74a4ace5e28de352e8ebcd57d127fcb29fb24704a50faef32e60006b97620",
                "md5": "84888b80fe57b0a11395b7163ea4e605",
                "sha256": "bbfdfaba72b68099a3d4a2fc8ab59ca1ab24424f788b128ed741f4e40a959d94"
            },
            "downloads": -1,
            "filename": "blocksworld3d-0.2.1.tar.gz",
            "has_sig": false,
            "md5_digest": "84888b80fe57b0a11395b7163ea4e605",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7, <3.11",
            "size": 2225882,
            "upload_time": "2023-08-19T19:06:49",
            "upload_time_iso_8601": "2023-08-19T19:06:49.345730Z",
            "url": "https://files.pythonhosted.org/packages/8a/f7/4a4ace5e28de352e8ebcd57d127fcb29fb24704a50faef32e60006b97620/blocksworld3d-0.2.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-08-19 19:06:49",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "ethanmclark1",
    "github_project": "blocksworld3d",
    "github_not_found": true,
    "lcname": "blocksworld3d"
}
        
Elapsed time: 0.10338s