GitXplorerGitXplorer
q

panda-gym

public
601 stars
117 forks
8 issues

Commits

List of commits on branch master.
Verified
10c4d8adaab07d8a29b2f8dc0aa85f8edd8532ae

Better seed (#97)

qqgallouedec committed 6 months ago
Verified
746ee4d89ecf1d17b14d22512d4cc2497d10ba49

Manually trigger workflow (#92)

qqgallouedec committed 7 months ago
Verified
14d944120037a5bb637e629965f88bb9e13dba3b

Fix typo (#89)

MMe-in-U committed 7 months ago
Verified
ede15d7f4a660b909ec5b21d85526ba1f4ed5f34

Fix CI for `macos-latest` (#91)

qqgallouedec committed 7 months ago
Verified
51fb901db6968cb8a78ebb11070d313566700d38

Small typo fix in comments (#83)

IIvan-267 committed a year ago
Verified
cdd7ef5e8414e74329fe7519104489c0a1873f09

fixed a typo in core.py (#76)

mmahaozhe committed a year ago

README

The README file for this repository.

panda-gym

Set of robotic environments based on PyBullet physics engine and gymnasium.

PyPI version Downloads GitHub build codecov Code style: black arXiv

Documentation

Check out the documentation.

Installation

Using PyPI

pip install panda-gym

From source

git clone https://github.com/qgallouedec/panda-gym.git
pip install -e panda-gym

Usage

import gymnasium as gym
import panda_gym

env = gym.make('PandaReach-v3', render_mode="human")

observation, info = env.reset()

for _ in range(1000):
    action = env.action_space.sample() # random action
    observation, reward, terminated, truncated, info = env.step(action)

    if terminated or truncated:
        observation, info = env.reset()

env.close()

You can also Open in Colab

Environments

PandaReach-v3 PandaPush-v3
PandaReach-v3 PandaPush-v3
PandaSlide-v3 PandaPickAndPlace-v3
PandaSlide-v3 PandaPickAndPlace-v3
PandaStack-v3 PandaFlip-v3
PandaStack-v3 PandaFlip-v3

Baselines results

Baselines results are available in rl-baselines3-zoo and the pre-trained agents in the Hugging Face Hub.

Citation

Cite as

@article{gallouedec2021pandagym,
  title        = {{panda-gym: Open-Source Goal-Conditioned Environments for Robotic Learning}},
  author       = {Gallou{\'e}dec, Quentin and Cazin, Nicolas and Dellandr{\'e}a, Emmanuel and Chen, Liming},
  year         = 2021,
  journal      = {4th Robot Learning Workshop: Self-Supervised and Lifelong Learning at NeurIPS},
}

Environments are widely inspired from OpenAI Fetch environments.