Home

Awesome

Bi-DexHands: Bimanual Dexterous Manipulation via Reinforcement Learning

<img src="assets/image_folder/coverv3.jpg" width="1000" border="1"/>

PyPI Organization Unittest Docs GitHub license

Update

[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:

<div align=center> <img src="assets/image_folder/quick_demo3.gif" align="center" width="600"/> </div>

Contents of this repo are as follows:

For more information about this work, please check our paper.


Installation

Details regarding installation of IsaacGym can be found here. We currently support the Preview Release 3/4 version of IsaacGym.

Pre-requisites

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 ``` -->

Install from source code

You can also install this repo from the source code:

pip install -e .

Introduction

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.

Getting Started

<span id="task">Tasks</span>

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):

EnvironmentsDescriptionDemo
ShadowHand OverThese 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 UnderarmThese 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 Over2UnderarmThis 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 AbreastThis 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 TwoCatchUnderarmThese 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 UnderarmThis 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 OpenInwardThis 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 OpenOutwardThis 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 CloseInwardThis 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 BottleCapThis 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 BlockThis 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 ScissorsThis environment requires both hands to cooperate to open the scissors<img src="assets/image_folder/scissors.gif" align="middle" width="250"/>
ShadowHandOpen PenCapThis environment requires both hands to cooperate to open the pen cap<img src="assets/image_folder/pen.gif" align="middle" width="250"/>
ShadowHandSwing CupThis 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 BottonThis environment requires both hands to press the button<img src="assets/image_folder/switch.gif" align="middle" width="250"/>
ShadowHandGrasp AndPlaceThis 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"/>

Training

Training Examples

RL/MARL Examples

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:

Multi-task/Meta RL Examples

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:

Gym-Like API

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

RL/Multi-Agent RL API

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 https://github.com/cyanrain7/TRPO-in-MARL:

from algorithms.marl.hatrpo_trainer import HATRPO as TrainAlgo
from algorithms.marl.hatrpo_policy import HATRPO_Policy as Policy
...
# warmup before the main loop starts
self.warmup()
# log data
start = time.time()
episodes = int(self.num_env_steps) // self.episode_length // self.n_rollout_threads
train_episode_rewards = torch.zeros(1, self.n_rollout_threads, device=self.device)
# main loop
for episode in range(episodes):
    if self.use_linear_lr_decay:
        self.trainer.policy.lr_decay(episode, episodes)
    done_episodes_rewards = []
    for step in range(self.episode_length):
        # Sample actions
        values, actions, action_log_probs, rnn_states, rnn_states_critic = self.collect(step)
        # Obser reward and next obs
        obs, share_obs, rewards, dones, infos, _ = self.envs.step(actions)
        dones_env = torch.all(dones, dim=1)
        reward_env = torch.mean(rewards, dim=1).flatten()
        train_episode_rewards += reward_env
        # Record reward at the end of each episode
        for t in range(self.n_rollout_threads):
            if dones_env[t]:
                done_episodes_rewards.append(train_episode_rewards[:, t].clone())
                train_episode_rewards[:, t] = 0

        data = obs, share_obs, rewards, dones, infos, \
                values, actions, action_log_probs, \
                rnn_states, rnn_states_critic
        # insert data into buffer
        self.insert(data)

    # compute return and update network
    self.compute()
    train_infos = self.train()
    # post process
    total_num_steps = (episode + 1) * self.episode_length * self.n_rollout_threads
    # save model
    if (episode % self.save_interval == 0 or episode == episodes - 1):
        self.save()

Testing

The trained model will be saved to logs/${Task Name}/${Algorithm Name}folder.

To load a trained model and only perform inference (no training), pass --test as an argument, and pass --model_dir to specify the trained models which you want to load. For single-agent reinforcement learning, you need to pass --model_dir to specify exactly what .pt model you want to load. An example of PPO algorithm is as follows:

python train.py --task=ShadowHandOver --algo=ppo --model_dir=logs/shadow_hand_over/ppo/ppo_seed0/model_5000.pt --test

For multi-agent reinforcement learning, pass --model_dir to specify the path to the folder where all your agent model files are saved. An example of HAPPO algorithm is as follows:

python train.py --task=ShadowHandOver --algo=happo --model_dir=logs/shadow_hand_over/happo/models_seed0 --test

Plotting

Users can convert all tfevent files into csv files and then try plotting the results. Note that you should verify env-num and env-step same as your experimental setting. For the details, please refer to the ./utils/logger/tools.py.

# geenrate csv for sarl and marl algorithms
$ python ./utils/logger/tools.py --alg-name <sarl algorithm> --alg-type sarl --env-num 2048 --env-step 8 --root-dir ./logs/shadow_hand_over --refresh 
$ python ./utils/logger/tools.py --alg-name <marl algorithm> --alg-type marl --env-num 2048 --env-step 8 --root-dir ./logs/shadow_hand_over --refresh 
# generate figures
$ python ./utils/logger/plotter.py --root-dir ./logs/shadow_hand_over --shaded-std --legend-pattern "\\w+"  --output-path=./logs/shadow_hand_over/figure.png

Use Bi-DexHands in Python scripts

import bidexhands as bi
import torch

env_name = 'ShadowHandOver'
algo = "ppo"
env = bi.make(env_name, algo)

obs = env.reset()
terminated = False

while not terminated:
    act = torch.tensor(env.action_space.sample()).repeat((env.num_envs, 1))
    obs, reward, done, info = env.step(act)

Enviroment Performance

Figures

We provide stable and reproducible baselins run by PPO, HAPPO, MAPPO, SAC algorithms. All baselines are run under the parameters of 2048 num_env and 100M total_step. The dataset folder contains the raw csv files.

<table> <tr> <th colspan="2">ShadowHandOver</th> <th colspan="2">ShadowHandLiftUnderarm</th> <tr> <tr> <td><img src="assets/image_folder/static_image/hand_over.jpg" align="middle" width="750"/></td> <td><img src="assets/image_folder/figures/over.png" align="middle" width="750"/></td> <td><img src="assets/image_folder/static_image/lift_underarm.jpg" align="middle" width="750"/></td> <td><img src="assets/image_folder/figures/lift_underarm.png" align="middle" width="750"/></td> <tr> <tr> <th colspan="2">ShadowHandCatchUnderarm</th> <th colspan="2">ShadowHandDoorOpenInward</th> <tr> <tr> <td><img src="assets/image_folder/static_image/catch_underarm.jpg" align="middle" width="750"/></td> <td><img src="assets/image_folder/figures/catch_underarm.png" align="middle" width="750"/></td> <td><img src="assets/image_folder/static_image/open_inward.jpg" align="middle" width="750"/></td> <td><img src="assets/image_folder/figures/door_open_inward.png" align="middle" width="750"/></td> <tr> <tr> <th colspan="2">ShadowHandOver2Underarm</th> <th colspan="2">ShadowHandDoorOpenOutward</th> <tr> <tr> <td><img src="assets/image_folder/static_image/catch_over2underarm.jpg" align="middle" width="750"/></td> <td><img src="assets/image_folder/figures/catch_over2underarm.png" align="middle" width="750"/></td> <td><img src="assets/image_folder/static_image/open_outward.jpg" align="middle" width="750"/></td> <td><img src="assets/image_folder/figures/door_open_outward.png" align="middle" width="750"/></td> <tr> <tr> <th colspan="2">ShadowHandCatchAbreast</th> <th colspan="2">ShadowHandDoorCloseInward</th> <tr> <tr> <td><img src="assets/image_folder/static_image/catch_abreast.jpg" align="middle" width="750"/></td> <td><img src="assets/image_folder/figures/catch_abreast.png" align="middle" width="750"/></td> <td><img src="assets/image_folder/static_image/close_inward.jpg" align="middle" width="750"/></td> <td><img src="assets/image_folder/figures/door_close_inward.png" align="middle" width="750"/></td> <tr> <tr> <th colspan="2">ShadowHandTwoCatchUnderarm</th> <th colspan="2">ShadowHandDoorCloseOutward</th> <tr> <tr> <td><img src="assets/image_folder/static_image/two_catch.jpg" align="middle" width="750"/></td> <td><img src="assets/image_folder/figures/two_catch_underarm.png" align="middle" width="750"/></td> <td><img src="assets/image_folder/static_image/close_outward.jpg" align="middle" width="750"/></td> <td><img src="assets/image_folder/figures/door_close_outward.png" align="middle" width="750"/></td> <tr> <tr> <th colspan="2">ShadowHandPushBlock</th> <th colspan="2">ShadowHandPen</th> <tr> <tr> <td><img src="assets/image_folder/static_image/push_block.jpg" align="middle" width="750"/></td> <td><img src="assets/image_folder/figures/push_block.png" align="middle" width="750"/></td> <td><img src="assets/image_folder/static_image/pen_cap.jpg" align="middle" width="750"/></td> <td><img src="assets/image_folder/figures/pen.png" align="middle" width="750"/></td> <tr> <tr> <th colspan="2">ShadowHandScissors</th> <th colspan="2">ShadowHandSwingCup</th> <tr> <tr> <td><img src="assets/image_folder/static_image/scissors.jpg" align="middle" width="750"/></td> <td><img src="assets/image_folder/figures/scissors.png" align="middle" width="750"/></td> <td><img src="assets/image_folder/static_image/swing_cup.jpg" align="middle" width="750"/></td> <td><img src="assets/image_folder/figures/swing_cup.png" align="middle" width="750"/></td> <tr> <tr> <th colspan="2">ShadowHandBlockStack</th> <th colspan="2">ShadowHandReOrientation</th> <tr> <tr> <td><img src="assets/image_folder/static_image/stack_block.jpg" align="middle" width="750"/></td> <td><img src="assets/image_folder/figures/block_stack.png" align="middle" width="750"/></td> <td><img src="assets/image_folder/static_image/re_orientation.jpg" align="middle" width="750"/></td> <td><img src="assets/image_folder/figures/re_orientation.png" align="middle" width="750"/></td> <tr> <tr> <th colspan="2">ShadowHandPourWater</th> <th colspan="2">ShadowHandSwitch</th> <tr> <tr> <td><img src="assets/image_folder/static_image/pour_water.jpg" align="middle" width="750"/></td> <td><img src="assets/image_folder/figures/pour_water.png" align="middle" width="750"/></td> <td><img src="assets/image_folder/static_image/switch.jpg" align="middle" width="750"/></td> <td><img src="assets/image_folder/figures/switch.png" align="middle" width="750"/></td> <tr> <tr> <th colspan="2">ShadowHandGraspAndPlace</th> <th colspan="2">ShadowHandBottleCap</th> <tr> <tr> <td><img src="assets/image_folder/static_image/grasp_and_place.jpg" align="middle" width="750"/></td> <td><img src="assets/image_folder/figures/grasp_and_place.png" align="middle" width="750"/></td> <td><img src="assets/image_folder/static_image/bottle_cap.jpg" align="middle" width="750"/></td> <td><img src="assets/image_folder/figures/bottle_cap.png" align="middle" width="750"/></td> <tr> </table> <!-- ## Building the Documentation To build documentation in various formats, you will need [Sphinx](http://www.sphinx-doc.org) and the readthedocs theme. ```bash cd docs/ pip install -r requirements.txt ``` You can then build the documentation by running `make <format>` from the `docs/` folder. Run `make` to get a list of all available output formats. If you get a katex error run `npm install katex`. If it persists, try `npm install -g katex` -->

Offline RL Datasets

Data Collection

ppo_collect is the algo that collects offline data, which is basically the same as the mujoco data collection in d4rl. Firstly train the PPO for 5000 iterations, and collect and save the demonstration data in the first 2500 iterations:

python train.py --task=ShadowHandOver --algo=ppo_collection --num_envs=2048 --headless

Select model_5000.pt as the export policy to collect the expert dataset:

python3	train.py --task=ShadowHandOver --algo=ppo_collect --model_dir=./logs/shadow_hand_over/ppo_collect/ppo_collect_seed-1/model_5000.pt --test --num_envs=200 --headless

Similarly, select model.pt as the random policy, select a model as the medium policy, collect random data and medium data as above, and evenly sample the replay data set from the demonstration data before training to the medium policy. The size of each dataset is 10e6. Run merge.py to get the medium-expert dataset.

Offline Data

The originally collected data in our paper is available at: Shadow Hand Over, Shadow Hand Door Open Outward.

Use rl_games to train our tasks

Please note that we have only test to support rl-games==1.5.2. Higher or lower version may cause an error.

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_rlgames.py --task=ShadowHandOver --algo=ppo

Currently we only support PPO and PPO with LSTM methods in rl_games. If you want to use PPO with LSTM, run this line in bidexhands folder:

python train_rlgames.py --task=ShadowHandOver --algo=ppo_lstm

The log files using rl_games can be found in bidexhands/runs folder.

Known issue

It must be pointed out that Bi-DexHands is still under development, and there are some known issue:

RuntimeError: CUDA error: an illegal memory access was encountered
CUDA kernel errors might be asynchronously reported at some other API call,so the stacktrace below might be incorrect.

Future Plan

Citation

Please cite as following if you think this work is helpful for you:

@inproceedings{
chen2022towards,
title={Towards Human-Level Bimanual Dexterous Manipulation with Reinforcement Learning},
author={Yuanpei Chen and Yaodong Yang and Tianhao Wu and Shengjie Wang and Xidong Feng and Jiechuan Jiang and Zongqing Lu and Stephen Marcus McAleer and Hao Dong and Song-Chun Zhu},
booktitle={Thirty-sixth Conference on Neural Information Processing Systems Datasets and Benchmarks Track},
year={2022},
url={https://openreview.net/forum?id=D29JbExncTP}
}

The Team

Bi-DexHands is a project contributed by Yuanpei Chen, Yaodong Yang, Tianhao Wu, Shengjie Wang, Xidong Feng, Jiechuang Jiang, Hao Dong, Zongqing Lu, Song-chun Zhu at Peking University, please contact yaodong.yang@pku.edu.cn if you are interested to collaborate.

We also thank the list of contributors from the following two open source repositories: Isaac Gym, HATRPO.

We also recommend users to read the early work on dexterous hands manipulation that inpisres this work.

License

Bi-DexHands has an Apache license, as found in the LICENSE file.