Điểm qua Farama-Foundation/Gymnasium-Robotics: 954 sao trên GitHub, viết chủ yếu bằng Python, thuộc nhóm AI Tools. A collection of robotics simulation environments for reinforcement learning
Tóm tắt dựng từ metadata GitHub của chính dự án — chưa có bài review TopGit. Trang sẽ tự động cập nhật khi bài review đầy đủ được xuất bản.
VÌ SAO CHƯA CÓ REVIEW
TopGit viết bài đầy đủ cho repo có nhiều sao nhất và được yêu cầu nhiều nhất. Trang này là snapshot trong thời gian chờ — xem README gốc ở tab READ ME.
This library contains a collection of Reinforcement Learning robotic environments that use the Gymnasium API. The environments run with the MuJoCo physics engine and the maintained mujoco python bindings.
The documentation website is at robotics.farama.org, and we have a public discord server (which we also use to coordinate development work) that you can join here: https://discord.gg/YymmHrvS
Installation
To install the Gymnasium-Robotics environments use pip install gymnasium-robotics
These environments also require the MuJoCo engine from Deepmind to be installed. Instructions to install the physics engine can be found at the MuJoCo website and the MuJoCo Github repository.
Note that the latest environment versions use the latest mujoco python bindings maintained by the MuJoCo team. If you wish to use the old versions of the environments that depend on mujoco-py, please install this library with pip install gymnasium-robotics[mujoco-py]
We support and test for Linux and macOS. We will accept PRs related to Windows, but do not officially support it.
Environments
Gymnasium-Robotics includes the following groups of environments:
Fetch - A collection of environments with a 7-DoF robot arm that has to perform manipulation tasks such as Reach, Push, Slide or Pick and Place.
Shadow Dexterous Hand - A collection of environments with a 24-DoF anthropomorphic robotic hand that has to perform object manipulation tasks with a cube, egg-object, or pen. There are variations of these environments that also include data from 92 touch sensors in the observation space.
MaMuJoCo - A collection of multi agent factorizations of the Gymnasium/MuJoCo environments and a framework for factorizing robotic environments, uses the pettingzoo.ParallelEnv API.
The D4RL environments are now available. These environments have been refactored and may not have the same action/observation spaces as the original, please read their documentation:
Maze Environments - An agent has to navigate through a maze to reach certain goal position. Two different agents can be used: a 2-DoF force-controlled ball, or the classic Ant agent from the Gymnasium MuJoCo environments. The environment can be initialized with a variety of maze shapes with increasing levels of difficulty.
Adroit Arm - A collection of environments that use the Shadow Dexterous Hand with additional degrees of freedom for the arm movement.
The different tasks involve hammering a nail, opening a door, twirling a pen, or picking up and moving a ball.
Franka Kitchen - Multitask environment in which a 9-DoF Franka robot is placed in a kitchen containing several common household items. The goal of each task is to interact with the items in order to reach a desired goal configuration.
WIP: generate new D4RL environment datasets with Minari.
Multi-goal API
The robotic environments use an extension of the core Gymnasium API by inheriting from GoalEnv class. The new API forces the environments to have a dictionary observation space that contains 3 keys:
observation - The actual observation of the environment
desired_goal - The goal that the agent has to achieved
achieved_goal - The goal that the agent has currently achieved instead. The objective of the environments is for this value to be close to desired_goal
This API also exposes the function of the reward, as well as the terminated and truncated signals to re-compute their values with different goals. This functionality is useful for algorithms that use Hindsight Experience Replay (HER).
The following example demonstrates how the exposed reward, terminated, and truncated functions
can be used to re-compute the values with substituted goals. The info dictionary can be used to store
additional information that may be necessary to re-compute the reward, but that is independent of the
goal, e.g. state derived from the simulation.
import gymnasium as gym
import gymnasium_robotics
gym.register_envs(gymnasium_robotics)
env = gym.make("FetchReach-v4")
env.reset()
obs, reward, terminated, truncated, info = env.step(env.action_space.sample())
# The following always has to hold:
assert reward == env.compute_reward(obs["achieved_goal"], obs["desired_goal"], info)
assert truncated == env.compute_truncated(obs["achieved_goal"], obs["desired_goal"], info)
assert terminated == env.compute_terminated(obs["achieved_goal"], obs["desired_goal"], info)
# However goals can also be substituted:
substitute_goal = obs["achieved_goal"].copy()
substitute_reward = env.compute_reward(obs["achieved_goal"], substitute_goal, info)
substitute_terminated = env.compute_terminated(obs["achieved_goal"], substitute_goal, info)
substitute_truncated = env.compute_truncated(obs["achieved_goal"], substitute_goal, info)
The GoalEnv class can also be used for custom environments.
Maintenance for this project is also contributed by the broader Farama team: farama.org/team.
Citation
If you use this in your research, please cite:
@software{gymnasium_robotics2023github,
author = {Rodrigo de Lazcano and Kallinteris Andreas and Jun Jet Tai and Seungjae Ryan Lee and Jordan Terry},
title = {Gymnasium Robotics},
url = {http://github.com/Farama-Foundation/Gymnasium-Robotics},
version = {1.4.0},
year = {2024},
}
Farama-Foundation/Gymnasium-Robotics thuộc nhóm AI Tools trên TopGit, cùng 6 topic GitHub. Trang Trending và Topics liệt kê các repo cùng số sao và cùng ngôn ngữ để so sánh.
Đọc thêm về Farama-Foundation/Gymnasium-Robotics ở đâu?
Trang TopGit này là một snapshot — tab "Readme" hiển thị nguyên văn README của repo (đã bỏ link, giữ ảnh). Repo GitHub ở github.com/Farama-Foundation/Gymnasium-Robotics là nguồn chính thức.
Farama-Foundation/Gymnasium-Robotics có bao nhiêu sao?
Farama-Foundation/Gymnasium-Robotics có 954 sao GitHub — tải lại trang để xem số mới nhất, hoặc xem trực tiếp github.com/Farama-Foundation/Gymnasium-Robotics. TopGit phản chiếu số sao của GitHub nhưng không cam kết đến từng phút.
Farama-Foundation/Gymnasium-Robotics có những chủ đề gì?
GitHub topics của Farama-Foundation/Gymnasium-Robotics: "d4rl", "gymnasium", "mujoco", "reinforcement-learning", "robotics", "simulation". TopGit xếp repo vào nhóm AI Tools.
Farama-Foundation/Gymnasium-Robotics còn đang phát triển không?
Commit gần nhất trên Farama-Foundation/Gymnasium-Robotics là 19 ngày trước (theo timestamp GitHub). Repo có 138 fork — một chỉ báo về mức độ quan tâm của cộng đồng.
Farama-Foundation/Gymnasium-Robotics viết bằng ngôn ngữ gì?
Farama-Foundation/Gymnasium-Robotics chủ yếu viết bằng Python. Trường "language" của GitHub dựa trên phần lớn byte ở nhánh mặc định.
Vì sao Farama-Foundation/Gymnasium-Robotics được xếp vào nhóm AI Tools?
TopGit xếp Farama-Foundation/Gymnasium-Robotics vào nhóm AI Tools dựa trên GitHub topics và mô tả của repo (gắn thẻ: "d4rl", "gymnasium", "mujoco"). Việc phân loại dựa trên metadata thật của repo, không phải đoán theo cảm tính biên tập.
Đọc đầy đủ README ở tab phía trên.
Gymnasium-Robotics có đáng để bạn bỏ thời gian?
ChatGPT, Claude và Perplexity đều đọc được trang này. Hỏi thử xem họ nghĩ gì về Gymnasium-Robotics.