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 AtariEnv, and RetroEnv 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

Plangym 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.27.tar.gz (55.1 kB view details)

Uploaded Source

Built Distribution

plangym-0.0.27-py3-none-any.whl (69.7 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: plangym-0.0.27.tar.gz
  • Upload date:
  • Size: 55.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.9.12

File hashes

Hashes for plangym-0.0.27.tar.gz
Algorithm Hash digest
SHA256 15179559aa343c6166505a255b2e49b17b8a66f619d4eb5de06e39c84475a278
MD5 05841101e38183bdae2a9c2e64d68488
BLAKE2b-256 f5d7e31456f97485e25c5e9e06df430a6215c0d4753cba325755d592a285d4f6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: plangym-0.0.27-py3-none-any.whl
  • Upload date:
  • Size: 69.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.9.12

File hashes

Hashes for plangym-0.0.27-py3-none-any.whl
Algorithm Hash digest
SHA256 80a008ffed089c703fe2b2c53409e95687007165fcacdf41da7d30ced250134b
MD5 125e832f4597d4301efc08e40fcd45f4
BLAKE2b-256 284f197af45ca9e0fd03c039f296206103e98fc631b94fa0c735561625fc3a03

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