Skip to main content

Plangym is an interface to use OpenAI gym for planning problems. It extends the standard interface to allow setting and recovering the environment states.

Project description

Welcome to Plangym

Documentation Status Code coverage PyPI package Code style: black license: MIT

Plangym is an open source Python library for developing and comparing planning algorithms by providing a standard API to communicate between algorithms and environments, as well as a standard set of environments compliant with that API.

Given that OpenAI's gym has become the de-facto standard in the research community, plangym's API is designed to be as similar as possible to gym's API while allowing to modify the environment state.

Furthermore, it provides additional functionality for stepping the environments in parallel, delayed environment initialization for dealing with environments that are difficult to serialize, compatibility with gym.Wrappers, and more.

Supported environments

Plangym currently supports all the following environments:

  • OpenAI gym classic control environments
  • OpenAI gym Box2D environments
  • OpenAI gym Atari 2600 environments
  • Deepmind's dm_control environments
  • stable-retro environments

Getting started

Stepping a batch of states and actions

import plangym
env = plangym.make(name="CartPole-v0")
state, obs = env.reset()

states = [state.copy() for _ in range(10)]
actions = [env.action_space.sample() for _ in range(10)]

data = env.step_batch(states=states, actions=actions)
new_states, observs, rewards, ends, infos = data

Using parallel steps

import plangym
env = plangym.make(name="MsPacman-v0", n_workers=2)

state, obs = env.reset()

states = [state.copy() for _ in range(10)]
actions = [env.action_space.sample() for _ in range(10)]

data =  env.step_batch(states=states, actions=actions)
new_states, observs, rewards, ends, infos = data

Installation

Plangym is tested on Ubuntu 20.04 and Ubuntu 21.04 for python versions 3.7 and 3.8.

Installing it with Python 3.6 will break AtariEnvironment, and RetroEnvironment does not support python 3.9 yet.

Installing from Pip

Assuming that the environment libraries that you want to use are already installed, you can install plangym from pip running:

pip3 install plangym

Installing from source

If you also want to install the environment libraries, first clone the repository:

git clone git@github.com:FragileTech/plangym.git
cd plangym

Install the system dependencies by running

sudo apt-get install -y --no-install-suggests --no-install-recommends libglfw3 libglew-dev libgl1-mesa-glx libosmesa6 xvfb swig

To install mujoco, run:

make install-mujoco

Finally, install the project requirements, and plangym.

pip install -r requirements.txt
pip install .

Roadmap

This is a summary of the incoming improvements to the project:

  • Improved documentation:
    • Adding specific tutorials for all the different types of supported environments.
    • Adding a developer guide section for incorporating new environments to plangym.
    • Improving the library docstrings with more examples and detailed information.
  • Better gym integration:
    • Registering all of plangym environments in gym under a namespace.
    • Offering more control over how the states are passed to step, reset and step_batch.
    • Allowing to return the states inside the info dictionary.
  • Adding new environments to plangym, such as:
  • Support for rendering in notebooks that are running on headless machines.

License

ML Ops Quickstart is released under the MIT license.

Contributing

Contributions are very welcome! Please check the contributing guidelines before opening a pull request.

If you have any suggestions for improvement, or you want to report a bug please open an issue.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

plangym-0.0.18.tar.gz (52.2 kB view details)

Uploaded Source

Built Distribution

plangym-0.0.18-py3-none-any.whl (62.2 kB view details)

Uploaded Python 3

File details

Details for the file plangym-0.0.18.tar.gz.

File metadata

  • Download URL: plangym-0.0.18.tar.gz
  • Upload date:
  • Size: 52.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for plangym-0.0.18.tar.gz
Algorithm Hash digest
SHA256 27d24bb7b90e3b9210db8e0893e18d6474fa34358db9e887feb2e23c8edf3a78
MD5 85718c2d2b14e5d30db495de744828d2
BLAKE2b-256 89ddf82e082ad790da8074db16a974588d69ca921ebe0d240528fc47f1099eba

See more details on using hashes here.

File details

Details for the file plangym-0.0.18-py3-none-any.whl.

File metadata

  • Download URL: plangym-0.0.18-py3-none-any.whl
  • Upload date:
  • Size: 62.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for plangym-0.0.18-py3-none-any.whl
Algorithm Hash digest
SHA256 b5d53fc48cea99ae2ec923bc2b2fc8be37850bec843c80c48eb5984d15212e7a
MD5 3908924883c4aac9ae9ab7009440a513
BLAKE2b-256 a01be68fa8ee5f58270c86ac7576707748fcc4ceb5bd5a8d9fca43f37e7daf4c

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page