Skip to main content

A library for reinforcement learning environments in the field of planar robotics

Project description

Gymnasium-Planar-Robotics (GymPR)

This library contains reinforcement learning environments for motion planning and object manipulation in the field of planar robotics. The environments follow either the Gymnasium API for single-agent RL or the PettingZoo parallel API for multi-agent RL. All environments are based on the MuJoCo physics engine. Note that this library depends on the latest MuJoCo Python bindings. mujoco-py is not supported.

Installation

The Gymnasium-Planar-Robotics package can be installed via PIP:

pip install gymnasium-planar-robotics

To install optional dependencies, to build the documentation, or to run the tests, use:

pip install gymnasium-planar-robotics[docs, tests]

Note: Depending on your shell (e.g. when using Zsh), you may need to use additional quotation marks:

pip install "gymnasium-planar-robotics[docs, tests]"

Documentation

The documentation is available at: https://ubi-coro.github.io/gymnasium-planar-robotics/

License

GymPR is published under the GNU General Public License v3.0.

Example

The following example shows how to use a trained policy with an example environment that follows the Gymnasium API:

import gymnasium as gym

env = gym.make("BenchmarkPushingEnv-v0", render_mode="human")
observation, info = env.reset(seed=42)

for _ in range(0,100):
    while not terminated and not truncated:
        action = policy(observation)  # custom policy
        observation, reward, terminated, truncated, info = env.step(action)

    observation, info = env.reset()
env.close()

Maintainer

Gymnasium-Planar-Robotics is currently maintained by Lara Bergmann (@lbergmann1).

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

gymnasium_planar_robotics-1.0.1.tar.gz (71.1 kB view hashes)

Uploaded Source

Built Distribution

gymnasium_planar_robotics-1.0.1-py3-none-any.whl (70.4 kB view hashes)

Uploaded Python 3

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