Downloads · 30 days
0
BAAI-Humanoid/MOSAIC_Model
MOSAIC_Model is a reinforcement learning model from BAAI-Humanoid. Use it for the reinforcement learning task on the model card, and read the license before you ship it in a product. The card lists the license as apache-2.0.
Project Page | Paper | Code | Dataset | Model
Downloads · 30 days
0
Access
Public
Updated Mar 4, 2026
Repo size
34.6 MB
Likes
5
Public
Click a slice to open those files.
.onnx34.6 MB · 100%
From the Hugging Face model README
Project Page | Paper | Code | Dataset | Model
This repository releases deployment-ready ONNX models for MOSAIC, introduced in:
In MOSAIC, a general motion tracker is trained in simulation, and interface-specific adaptation is handled via a lightweight residual adaptor that injects action-space corrections while preserving the general policy’s capabilities.
It includes models:
from huggingface_hub import hf_hub_download
onnx_path = hf_hub_download(
repo_id="BAAI-Humanoid/MOSAIC_Model",
filename="pico_teleop.onnx", # or "noitom_teleop.onnx"
)
print("Downloaded to:", onnx_path)
from huggingface_hub import snapshot_download
local_dir = snapshot_download(
repo_id="BAAI-Humanoid/MOSAIC_Model",
)
print("Downloaded to:", local_dir)
For constructing the correct deployable observations and mapping model outputs to Unitree G1 control targets, please use the official MOSAIC codebase and RobotBridge Deployment framework.
If you use these models for your research, please cite our paper:
@article{sun2026mosaic,
title = {MOSAIC: Bridging the Sim-to-Real Gap in Generalist Humanoid Motion Tracking and Teleoperation with Rapid Residual Adaptation},
author = {Zhenguo Sun and Bo-Sheng Huang and Yibo Peng and Xukun Li and Jingyu Ma and Yu Sun and Zhe Li and Haojun Jiang and Biao Gao and Zhenshan Bing and Xinlong Wang and Alois Knoll},
journal = {arXiv preprint arXiv:2602.08594},
year = {2026}
}
This dataset is released under Apache-2.0.