OpenRobotLab / HIMLoco

Learning-based locomotion control from OpenRobotLab, including Hybrid Internal Model & H-Infinity Locomotion Control
https://junfeng-long.github.io/HIMLoco/
Other
211 stars 22 forks source link

Learning-based Locomotion Control from OpenRobotLab

This repository contains learning-based locomotion control research from OpenRobotLab, currently including Hybrid Internal Model & H-Infinity Locomotion Control.

πŸ”₯ News

πŸ“ TODO List

πŸ“š Getting Started

Installation

We test our codes under the following environment:

  1. Create an environment and install PyTorch:

    • conda create -n himloco python=3.7.16
    • conda activate himloco
    • pip3 install torch==1.10.0+cu113 torchvision==0.11.1+cu113 torchaudio==0.10.0+cu113 -f https://download.pytorch.org/whl/cu113/torch_stable.html
  2. Install Isaac Gym:

  3. Clone this repository.

    • git clone https://github.com/OpenRobotLab/HIMLoco.git
    • cd HIMLoco
  4. Install HIMLoco.

    • cd rsl_rl && pip install -e .
    • cd ../legged_gym && pip install -e .

Note: Please use legged_gym and rsl_rl provided in this repo, we have modefications on these repos.

Tutorial

  1. Train a policy:

    • cd legged_gym/legged_gym/scripts
    • python train.py
  2. Play and export the latest policy:

    • cd legged_gym/legged_gym/scripts
    • python play.py

πŸ”— Citation

If you find our work helpful, please cite:

@inproceedings{long2023him,
  title={Hybrid Internal Model: Learning Agile Legged Locomotion with Simulated Robot Response},
  author={Long, Junfeng and Wang, ZiRui and Li, Quanyi and Cao, Liu and Gao, Jiawei and Pang, Jiangmiao},
  booktitle={The Twelfth International Conference on Learning Representations},
  year={2024}
}

@misc{long2024hinf,
  title={Learning H-Infinity Locomotion Control}, 
  author={Junfeng Long and Wenye Yu and Quanyi Li and Zirui Wang and Dahua Lin and Jiangmiao Pang},
  year={2024},
  eprint={2404.14405},
  archivePrefix={arXiv},
}

πŸ“„ License

Creative Commons License
This work is under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.

πŸ‘ Acknowledgements