[2023/02/09] We re-package the Bi-DexHands. Now you can call the Bi-DexHands' environments not only on the command line, but also in your Python script. check our README Use Bi-DexHands in Python scripts below.
[2022/11/24] Now we support visual observation for all the tasks, check this document for visual input.
[2022/10/02] Now we support for the default IsaacGymEnvs RL library rl-games, check our README below.
Bi-DexHands (click bi-dexhands.ai) provides a collection of bimanual dexterous manipulations tasks and reinforcement learning algorithms. Reaching human-level sophistication of hand dexterity and bimanual coordination remains an open challenge for modern robotics researchers. To better help the community study this problem, Bi-DexHands are developed with the following key features:
Contents of this repo are as follows:
For more information about this work, please check our paper.
Details regarding installation of IsaacGym can be found here. We currently support the Preview Release 3/4 version of IsaacGym.
The code has been tested on Ubuntu 18.04/20.04 with Python 3.7/3.8. The minimum recommended NVIDIA driver
version for Linux is 470.74 (dictated by support of IsaacGym).
It uses Anaconda to create virtual environments. To install Anaconda, follow instructions here.
Ensure that Isaac Gym works on your system by running one of the examples from the python/examples
directory, like joint_monkey.py. Please follow troubleshooting steps described in the Isaac Gym Preview Release 3/4
install instructions if you have any trouble running the samples.
Once Isaac Gym is installed and samples work within your current python environment, install this repo:
<!-- #### Install from PyPI Bi-DexHands is hosted on PyPI. It requires Python >= 3.7. You can simply install Bi-DexHands from PyPI with the following command: ```bash pip install bidexhands ``` -->You can also install this repo from the source code:
pip install -e .
This repository contains complex dexterous hands control tasks. Bi-DexHands is built in the NVIDIA Isaac Gym with high performance guarantee for training RL algorithms. Our environments focus on applying model-free RL/MARL algorithms for bimanual dexterous manipulation, which are considered as a challenging task for traditional control methods.
Source code for tasks can be found in envs/tasks. The detailed settings of state/action/reward are in here.
So far, we release the following tasks (with many more to come):
| Environments | Description | Demo |
|---|---|---|
| ShadowHand Over | These environments involve two fixed-position hands. The hand which starts with the object must find a way to hand it over to the second hand. | <img src="assets/image_folder/0v2.gif" width="250"/> |
| ShadowHandCatch Underarm | These environments again have two hands, however now they have some additional degrees of freedom that allows them to translate/rotate their centre of masses within some constrained region. | <img src="assets/image_folder/hand_catch_underarmv2.gif" align="middle" width="250"/> |
| ShadowHandCatch Over2Underarm | This environment is made up of half ShadowHandCatchUnderarm and half ShadowHandCatchOverarm, the object needs to be thrown from the vertical hand to the palm-up hand | <img src="assets/image_folder/2v2.gif" align="middle" width="250"/> |
| ShadowHandCatch Abreast | This environment is similar to ShadowHandCatchUnderarm, the difference is that the two hands are changed from relative to side-by-side posture. | <img src="assets/image_folder/1v2.gif" align="middle" width="250"/> |
| ShadowHandCatch TwoCatchUnderarm | These environments involve coordination between the two hands so as to throw the two objects between hands (i.e. swapping them). | <img src="assets/image_folder/two_catchv2.gif" align="middle" width="250"/> |
| ShadowHandLift Underarm | This environment requires grasping the pot handle with two hands and lifting the pot to the designated position | <img src="assets/image_folder/3v2.gif" align="middle" width="250"/> |
| ShadowHandDoor OpenInward | This environment requires the closed door to be opened, and the door can only be pulled inwards | <img src="assets/image_folder/door_open_inwardv2.gif" align="middle" width="250"/> |
| ShadowHandDoor OpenOutward | This environment requires a closed door to be opened and the door can only be pushed outwards | <img src="assets/image_folder/open_outwardv2.gif" align="middle" width="250"/> |
| ShadowHandDoor CloseInward | This environment requires the open door to be closed, and the door is initially open inwards | <img src="assets/image_folder/close_inwardv2.gif" align="middle" width="250"/> |
| ShadowHand BottleCap | This environment involves two hands and a bottle, we need to hold the bottle with one hand and open the bottle cap with the other hand | <img src="assets/image_folder/bottle_capv2.gif" align="middle" width="250"/> |
| ShadowHandPush Block | This environment requires both hands to touch the block and push it forward | <img src="assets/image_folder/push_block.gif" align="middle" width="250"/> |
| ShadowHandOpen Scissors | This environment requires both hands to cooperate to open the scissors | <img src="assets/image_folder/scissors.gif" align="middle" width="250"/> |
| ShadowHandOpen PenCap | This environment requires both hands to cooperate to open the pen cap | <img src="assets/image_folder/pen.gif" align="middle" width="250"/> |
| ShadowHandSwing Cup | This environment requires two hands to hold the cup handle and rotate it 90 degrees | <img src="assets/image_folder/swing_cup.gif" align="middle" width="250"/> |
| ShadowHandTurn Botton | This environment requires both hands to press the button | <img src="assets/image_folder/switch.gif" align="middle" width="250"/> |
| ShadowHandGrasp AndPlace | This environment has a bucket and an object, we need to put the object into the bucket | <img src="assets/image_folder/g&p.gif" align="middle" width="250"/> |
For example, if you want to train a policy for the ShadowHandOver task by the PPO algorithm, run this line in bidexhands folder:
python train.py --task=ShadowHandOver --algo=ppo
To select an algorithm, pass --algo=ppo/mappo/happo/hatrpo/...
as an argument. For example, if you want to use happo algorithm, run this line in bidexhands folder:
python train.py --task=ShadowHandOver --algo=happo
Supported Single-Agent RL algorithms are listed below:
Supported Multi-Agent RL algorithms are listed below:
The training method of multi-task/meta RL is similar to the RL/MARL, it is only need to select the multi-task/meta categories and the corresponding algorithm. For example, if you want to train a policy for the ShadowHandMT4 categories by the MTPPO algorithm, run this line in bidexhands folder:
python train.py --task=ShadowHandMetaMT4 --algo=mtppo
Supported Multi-task RL algorithms are listed below:
Supported Meta RL algorithms are listed below:
We provide a Gym-Like API that allows us to get information from the Isaac Gym environment. Our single-agent Gym-Like wrapper is the code of the Isaac Gym team used, and we have developed a multi-agent Gym-Like wrapper based on it:
class MultiVecTaskPython(MultiVecTask): # Get environment state information def get_state(self): return torch.clamp(self.task.states_buf, -self.clip_obs, self.clip_obs).to(self.rl_device) def step(self, actions): # Stack all agent actions in order and enter them into the environment a_hand_actions = actions[0] for i in range(1, len(actions)): a_hand_actions = torch.hstack((a_hand_actions, actions[i])) actions = a_hand_actions # Clip the actions actions_tensor = torch.clamp(actions, -self.clip_actions, self.clip_actions) self.task.step(actions_tensor) # Obtain information in the environment and distinguish the observation of different agents by hand obs_buf = torch.clamp(self.task.obs_buf, -self.clip_obs, self.clip_obs).to(self.rl_device) hand_obs = [] hand_obs.append(torch.cat([obs_buf[:, :self.num_hand_obs], obs_buf[:, 2*self.num_hand_obs:]], dim=1)) hand_obs.append(torch.cat([obs_buf[:, self.num_hand_obs:2*self.num_hand_obs], obs_buf[:, 2*self.num_hand_obs:]], dim=1)) rewards = self.task.rew_buf.unsqueeze(-1).to(self.rl_device) dones = self.task.reset_buf.to(self.rl_device) # Organize information into Multi-Agent RL format # Refer to https://github.com/tinyzqh/light_mappo/blob/HEAD/envs/env.py sub_agent_obs = [] ... sub_agent_done = [] for i in range(len(self.agent_index[0] + self.agent_index[1])): ... sub_agent_done.append(dones) # Transpose dim-0 and dim-1 values obs_all = torch.transpose(torch.stack(sub_agent_obs), 1, 0) ... done_all = torch.transpose(torch.stack(sub_agent_done), 1, 0) return obs_all, state_all, reward_all, done_all, info_all, None def reset(self): # Use a random action as the first action after the environment reset actions = 0.01 * (1 - 2 * torch.rand([self.task.num_envs, self.task.num_actions * 2], dtype=torch.float32, device=self.rl_device)) # step the simulator self.task.step(actions) # Get the observation and state buffer in the environment, the detailed are the same as step(self, actions) obs_buf = torch.clamp(self.task.obs_buf, -self.clip_obs, self.clip_obs) ... obs = torch.transpose(torch.stack(sub_agent_obs), 1, 0) state_all = torch.transpose(torch.stack(agent_state), 1, 0) return obs, state_all, None
We also provide single-agent and multi-agent RL interfaces. In order to adapt to Isaac Gym and speed up the running efficiency, all operations are implemented on GPUs using tensor. Therefore, there is no need to transfer data between the CPU and GPU.
We give an example using HATRPO (the SOTA MARL algorithm for cooperative tasks) to illustrate multi-agent RL APIs, please refer to


免费创建高清无水印Sora视频
Vora是一个免费创建高清无水印Sora视频的AI工具


最适合小白的AI自动化工作流平台
无需编码,轻松生成可复用、可变现的AI自动化工作流

大模型驱动的Excel数据处理工具
基于大模型交互的表格处理系统,允许用户通过对话方式完成数据整理和可视化分析。系统采用机器学习算法解析用户指令,自动执行排序、公式计算和数据透视等操作,支持多种文件格式导入导出。数据处理响应速度保持在0.8秒以内,支持超过100万行数据的即时分析。


AI辅助编程,代码自动修复
Trae是一种自适应的集成开发环境(IDE),通过自动化和多元协作改变开发流程。利用Trae,团队能够更快速、精确地编写和部署代码,从而提高编程效率和项目交付速度。Trae具备上下文感知和代码自动完成功能,是提升开发效率的理想工具。


AI论文写作指导平台
AIWritePaper论文写作是一站式AI论文写作辅助工具,简化了选题、文献检索至论文撰写的整个过程。通过简单设定,平台可快速生成高质量论文大纲和全文,配合图表、参考文献等一应俱全,同时提供开题报告和答辩PPT等增值服务,保障数据安全,有效提升写作效率和论文质量。


AI一键生成PPT,就用博思AIPPT!
博思AIPPT,新一代的AI生成PPT平台,支持智能生成PPT、AI美化PPT、文本&链接生成PPT、导入Word/PDF/Markdown文档生成PPT等,内置海量精美PPT模板,涵盖商务、教育、科技等不同风格,同时针对每个页面提供多种版式,一键自适应切换,完美适配各种办公场景。


AI赋能电商视觉革命,一站式智能商拍平台
潮际好麦深耕服装行业,是国内AI试衣效果最好的软件。使用先进AIGC能力为电商卖家批量提供优质的、低成本的商拍图。合作品牌有Shein、Lazada、安踏、百丽等65个国内外头部品牌,以及国内10万+淘宝、天猫、京东等主流平台的品牌商家,为卖家节省将近85%的出图成本,提升约3倍出图效率,让品牌能够快速上架。


企业专属的AI法律顾问
iTerms是法大大集团旗下法律子品牌,基于最先进的大语言模型(LLM)、专业的法律知识库和强大的智能体架构,帮助企业扫清合规障碍,筑牢风控防线,成为您企业专属的AI法律顾问。


稳定高效的流量提升解决方案,助力品牌曝光
稳定高效的流量提升解决方案,助力品牌曝光


最新版Sora2模型免费使用,一键生成无水印视频
最新版Sora2模型免费使用,一键生成无水印视频
最新AI工具、AI资讯
独家AI资源、AI项目落地

微信扫一扫关注公众号