# HDMI **Repository Path**: zhwl_1981/HDMI ## Basic Information - **Project Name**: HDMI - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-10-21 - **Last Updated**: 2025-10-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # HDMI: Learning Interactive Humanoid Whole-Body Control from Human Videos
Website Video Arxiv GitHub stars
HDMI is a novel framework that enables humanoid robots to acquire diverse whole-body interaction skills directly from monocular RGB videos of human demonstrations. This repository contains the official training code of **HDMI: Learning Interactive Humanoid Whole-Body Control from Human Videos**. ## TODO - [x] Release hdmi training code - [x] hoi motion datasets - [x] Release pretrained models - [x] Release sim2real code ## 🚀 Quick Start ```bash # setup conda environment conda create -n hdmi python=3.11 -y conda activate hdmi # install isaacsim pip install "isaacsim[all,extscache]==5.0.0" --extra-index-url https://pypi.nvidia.com isaacsim # test isaacsim # install isaaclab cd .. git clone git@github.com:isaac-sim/IsaacLab.git cd IsaacLab git checkout v2.2.0 ./isaaclab.sh -i none # install hdmi cd .. git clone https://github.com/EGalahad/hdmi cd hdmi pip install -e . ``` ## Train and Evaluate Teacher policy ```bash # train policy python scripts/train.py algo=ppo_roa_train task=G1/hdmi/move_suitcase # evaluate policy python scripts/play.py algo=ppo_roa_train task=G1/hdmi/move_suitcase checkpoint_path=run: ``` Student policy ```bash # train policy python scripts/train.py algo=ppo_roa_finetune task=G1/hdmi/move_suitcase checkpoint_path=run: # evaluate policy python scripts/play.py algo=ppo_roa_finetune task=G1/hdmi/move_suitcase checkpoint_path=run: ``` ## Sim2Real Please see [github.com/EGalahad/sim2real](https://github.com/EGalahad/sim2real) for details.