| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Yufei Xue* Wentao Dong* Minghuan Liu^ Weinan Zhang Jiangmiao Pang
* Equal contribution ^ Project Lead
First, create and activate a new conda environment:
conda create -n hugwbc python=3.8 -y
conda activate hugwbcNext, install PyTorch. Please use the command that corresponds to your system's CUDA version. For example, for CUDA 11.8:
pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118Then, download Isaac Gym Preview 4. After extracting the file, install it by running:
cd isaacgym/python
pip install -e .Note: Please follow the installation instructions from the official NVIDIA website for Isaac Gym, as there may be additional dependencies.
Finally, clone this repository and install the required packages:
git clone https://github.com/apexrl/HugWBC.git
cd HugWBC
pip install -e rsl_rlAll commands should be run from the root of the HugWBC repository.
To train a new policy, run:
python legged_gym/scripts/train.py --task=h1int --headless To visualize a trained policy, run:
python legged_gym/scripts/play.py --task=h1intWe uses the official code base of unitree_mujoco for Sim2Sim evaluation. And the interface with both mujoco simulation and the real robot is implemented through unitree_skd2_python.
If you find our work helpful, please cite:
@inproceedings{xue2025hugwbc,
title={HugWBC: A Unified and General Humanoid Whole-Body Controller for Versatile Locomotion},
author={Xue, Yufei and Dong, Wentao and Liu, Minghuan and Zhang, Weinan and Pang, Jiangmiao},
booktitle={Robotics: Science and Systems (RSS)},
year={2025}
}Our code is built upon the following open-source projects. We thank the authors for their great work.
| Back | FazBrowse Home | New Git URL |