
This is the codebase for the GR00T Whole-Body Control (WBC) projects. It hosts model checkpoints and scripts for training, evaluating, and deploying advanced whole-body controllers for humanoid robots. We currently support:
low_latency/. See the Download Models and VLA Inference docs for usage.motionbricks/ and the project page.<a href="https://nvlabs.github.io/GEAR-SONIC/"><strong>Website</strong></a> |
<a href="https://huggingface.co/nvidia/GEAR-SONIC"><strong>Model</strong></a> |
<a href="https://arxiv.org/abs/2511.07820"><strong>Paper</strong></a> |
<a href="https://nvlabs.github.io/GR00T-WholeBodyControl/"><strong>Docs</strong></a>

SONIC is a humanoid behavior foundation model that gives robots a core set of motor skills learned from large-scale human motion data. Rather than building separate controllers for predefined motions, SONIC uses motion tracking as a scalable training task, enabling a single unified policy to produce natural, whole-body movement and support a wide range of behaviors — from walking and crawling to teleoperation and multi-modal control. It is designed to generalize beyond the motions it has seen during training and to serve as a foundation for higher-level planning and interaction.
In this repo, we release SONIC's training code, deployment framework, model checkpoints, and teleoperation stack for data collection.
The low-latency SONIC variant is available on Hugging Face under low_latency/. It keeps the default top-level deployment policy unchanged. Download it with python download_from_hf.py --low-latency.
For C++ deployment:
cd gear_sonic_deploy
./deploy.sh \
--cp policy/low_latency/model \
--obs-config policy/low_latency/observation_config.yaml \
--input-type zmq_manager \
real
For the Python VLA launcher:
python gear_sonic/scripts/launch_inference.py \
--deploy-checkpoint policy/low_latency/model \
--deploy-obs-config policy/low_latency/observation_config.yaml \
--camera-host 192.168.123.164 \
--prompt "pick up the cup"
SONIC supports real-time whole-body teleoperation via PICO VR headset, enabling natural human-to-robot motion transfer for data collection and interactive control.
This repo can also drive the headset over Isaac Teleop / CloudXR by launching gear_sonic/scripts/pico_manager_thread_server.py --input-source isaac-teleop. The streamer hosts the CloudXR runtime in-process via isaacteleop[cloudxr] — no separate publisher container required. That path is currently documented and supported only for G1 with a Thor backpack. The Isaac Teleop bring-up steps are documented in docs/source/tutorials/isaac_teleop_publisher_setup.md.
| Walking | Running |
![]() |
![]() |
| Sideways Movement | Kneeling |
![]() |
![]() |
| Getting Up | Jumping |
![]() |
![]() |
| Bimanual Manipulation | Object Hand-off |
![]() |
![]() |
SONIC includes a kinematic planner for real-time locomotion generation — choose a movement style, steer with keyboard/gamepad, and adjust speed and height on the fly.
| In-the-Wild Navigation | |
![]() |
|
| Run | Happy |
![]() |
![]() |
| Stealth | Injured |
![]() |
![]() |
| Kneeling | Hand Crawling |
![]() |
![]() |
| Elbow Crawling | Boxing |
![]() |
![]() |
SONIC can be trained from scratch on the Bones-SEED motion capture dataset (142K+ motions, ~288 hours, Unitree G1 retargeted), or finetuned from the released checkpoint on Hugging Face.
# Install training dependencies (Isaac Lab must be installed separately — see docs)
pip install -e "gear_sonic/[training]"
# Download checkpoint + SMPL data from Hugging Face
pip install huggingface_hub
python download_from_hf.py --training
# Download Bones-SEED G1 CSVs from huggingface.co/datasets/bones-studio/seed, then convert and filter
python gear_sonic/data_process/convert_soma_csv_to_motion_lib.py \
--input /path/to/bones_seed/g1/csv/ \
--output data/motion_lib_bones_seed/robot --fps 30 --fps_source 120 --individual --num_workers 16
python gear_sonic/data_process/filter_and_copy_bones_data.py \
--source data/motion_lib_bones_seed/robot --dest data/motion_lib_bones_seed/robot_filtered
# Finetune from released checkpoint (64+ GPUs recommended)
accelerate launch --num_processes=8 gear_sonic/train_agent_trl.py \
+exp=manager/universal_token/all_modes/sonic_release \
+checkpoint=sonic_release/last.pt \
num_envs=4096 headless=True \
++manager_env.commands.motion.motion_lib_cfg.motion_file=data/motion_lib_bones_seed/robot_filtered \
++manager_env.commands.motion.motion_lib_cfg.smpl_motion_file=data/smpl_filtered
For the full guide including multi-node training, evaluation, ONNX export, and SOMA encoder setup: 📖 Installation (Training) | Training Guide
This release includes:
gear_sonic_deploy: C++ inference stack for deploying SONIC policies on real hardwaregear_sonic: Full SONIC training stack — PPO training, data processing pipeline, and configuration system for training on Bones-SEED and custom motion datasetsmotionbricks: Preview release of the MotionBricks real-time latent generative stack — interactive G1 demo, pretrained checkpoints, synthetic training code, and motion-representation docsGit LFS required. This repo contains large binary assets (meshes, ONNX models). Without Git LFS, you will get small pointer files instead of actual data, causing silent failures. Install Git LFS first if you don't have it:
sudo apt install git-lfs && git lfs installMotionBricks pretrained checkpoints are skipped by default to avoid an extra ~2.2 GiB download during normal monorepo setup. MotionBricks GIFs and meshes still download normally. Fetch the checkpoints explicitly if you plan to run the MotionBricks demo.
git clone https://github.com/NVlabs/GR00T-WholeBodyControl.git
cd GR00T-WholeBodyControl
git lfs pull
# Optional: fetch MotionBricks pretrained checkpoints.
git lfs pull --include="motionbricks/out/**" --exclude=""
# Verify your environment
python check_environment.py
| I want to... | Environment | How to install |
|---|---|---|
| Train / finetune SONIC | Isaac Lab's Python env | Install Isaac Lab, then pip install -e "gear_sonic/[training]" |
| Run MuJoCo simulation | .venv_sim (auto-created) |
bash install_scripts/install_mujoco_sim.sh |
| VR teleoperation | .venv_teleop (auto-created) |
bash install_scripts/install_pico.sh |
| Collect data | .venv_data_collection (auto-created) |
bash install_scripts/install_data_collection.sh |
| Deploy on real robot | C++ build | See deployment docs |
Each use case has its own lightweight environment. The install scripts use uv
and create isolated venvs automatically — you don't need to manage them manually.
Training is the only one that requires
$ claude mcp add GR00T-WholeBodyControl \
-- python -m otcore.mcp_server <graph>