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
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
andstep_batch
. - Allowing to return the states inside the info dictionary.
- Adding new environments to plangym, such as:
- Gym mujoco
- Gym robotics
- Gym-pybullet-drones
- 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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file plangym-0.0.25.tar.gz
.
File metadata
- Download URL: plangym-0.0.25.tar.gz
- Upload date:
- Size: 54.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.9.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 97c87b087d5d29db665f03f8ea69cd7c7a6633b265d645eecbaa06e978cda0cc |
|
MD5 | 0777627b0cfdd1d55cbc100636431b08 |
|
BLAKE2b-256 | e947016453ef8d6e579df8709badfaf39b19be506bce646521d9b9bf640266ad |
File details
Details for the file plangym-0.0.25-py3-none-any.whl
.
File metadata
- Download URL: plangym-0.0.25-py3-none-any.whl
- Upload date:
- Size: 68.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.9.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2006033e1d87515b925822cf831b846a9ec414235de72c12ae60aca49751d619 |
|
MD5 | 91db58f8528021da2808a19c884ba520 |
|
BLAKE2b-256 | 57c091c1125ff526b1909f7c2c963352c36f6d52b97e004439a432f9ce217172 |