CoolFace
Modelpublic

tencent/Hy-Embodied-0.5-VLA-UMI

sourceHugging Faceapache-2.0updated 3mo agoView on Hugging Face
14likes243downloads
Model Card

<div align="center"> <h1>Hy-Embodied-0.5-VLA</h1> <p><b>From Vision-Language-Action Models to a Real-World Robot Learning Stack</b></p> <p><i>Tencent Robotics X ร— Tencent Hy Team</i></p>

<a href="https://tairos.tencent.com/openSourceModels/hy-embodied-0.5-vla"><img src="https://img.shields.io/badge/Website-Project_Page-blue?logo=internet-explorer" alt="Project Page"></a> <a href="https://arxiv.org/abs/2606.14409"><img src="https://img.shields.io/badge/PDF-arXiv-red?logo=arxiv" alt="Tech Report"></a> <a href="https://github.com/Tencent-Hunyuan/Hy-Embodied-0.5-VLA"><img src="https://img.shields.io/badge/Code-GitHub-black?logo=github" alt="Code"></a> <br> <a href="https://huggingface.co/tencent/Hy-Embodied-0.5-VLA-UMI"><img src="https://img.shields.io/badge/Model-HuggingFace-yellow?logo=huggingface" alt="Model"></a> <a href="https://modelscope.cn/models/Tencent-Hunyuan/Hy-Embodied-0.5-VLA-UMI"><img src="https://img.shields.io/badge/Model-ModelScope-purple?logo=modelscope" alt="ModelScope"></a> <a href="https://huggingface.co/datasets/tencent/Hy-Embodied-0.5-VLA-Data"><img src="https://img.shields.io/badge/Data-HuggingFace-orange?logo=huggingface" alt="Data"></a> <a href="https://modelscope.cn/datasets/Tencent-HunYuan/Hy-Embodied-0.5-VLA-Data"><img src="https://img.shields.io/badge/Data-ModelScope-purple?logo=modelscope" alt="Data"></a> </div>

<div align="center"> <video src="https://github.com/user-attachments/assets/fdd1966c-8453-4f6a-9758-238076d08ac4" controls autoplay muted loop width="85%"></video> </div>

๐Ÿ“– Abstract

We introduce Hy-Embodied-0.5-VLA (Hy-VLA) โ€” an end-to-end Vision-Language-Action system that spans the full robot learning stack: data collection, model design, pre-training, supervised fine-tuning, RL post-training, and real-world deployment. Built on the Hy-Embodied-0.5 MoT backbone, Hy-VLA integrates a flow-matching action expert, a compact memory encoder for multi-frame history, and a delta-chunk action representation decoupled from embodiment-specific kinematics.

Powered by 10,000+ hours of high-fidelity UMI demonstrations collected via a custom fingertip interface with optical motion-capture, Hy-VLA achieves state-of-the-art results on the RoboTwin 2.0 benchmark (90.9% / 90.1% on Clean / Randomized) and demonstrates robust cross-embodiment transfer across four real-world robot platforms. Paired with FlowPRO preference optimization and an asynchronous inference framework, Hy-VLA establishes a scalable paradigm for continuous dexterous manipulation.

Overview

Hy-VLA-UMI is the pre-trained checkpoint of Hy-Embodied-0.5-VLA (Hy-VLA), an end-to-end Vision-Language-Action system built on the Hy-Embodied-0.5 MoT backbone. Powered by 10,000+ hours of high-fidelity UMI demonstrations collected via a custom fingertip interface with optical motion-capture, this checkpoint serves as a generalist starting point for downstream fine-tuning on target embodiments.

Architecture

  • โ€”VLM Backbone: Hy-Embodied-0.5 MoT
  • โ€”Action Expert: 370M-parameter dual-tower flow-matching transformer (hidden=1024, intermediate=2048)
  • โ€”Video Encoder: Single-frame mode (K=1) during pre-training; memory encoder is activated during SFT
  • โ€”Action Representation: Relative-to-first-frame delta EEF chunk (10-dim per arm: xyz + rot6d + gripper)
  • โ€”Action Horizon: H=50 at 10 Hz

Training

PropertyValue
DataFull 10K-hour UMI corpus (~1M episodes, 70+ tasks)
InitializationVLM: tencent/HY-Embodied-0.5; Action Expert: random
ObjectiveConditional flow matching (no co-training)
Steps200K
Global batch size1,024
Learning rate5e-5 (linear warmup 1K โ†’ decay to 5e-6 over 160K โ†’ constant 40K)
OptimizerAdamW, bfloat16 mixed precision
Hardware64 GPUs (8 nodes ร— 8)

Contents

The checkpoint ships with all necessary files for loading and inference:

tencent/Hy-Embodied-0.5-VLA-UMI/
โ”œโ”€โ”€ model.safetensors         # Model weights
โ”œโ”€โ”€ config.json               # HyVLA configuration
โ”œโ”€โ”€ tokenizer.json            # Tokenizer for the VLM backbone
โ”œโ”€โ”€ tokenizer_config.json
โ”œโ”€โ”€ special_tokens_map.json
โ”œโ”€โ”€ chat_template.jinja       # Chat template for instruction formatting
โ”œโ”€โ”€ preprocessor_config.json  # Image preprocessing config
โ”œโ”€โ”€ norm_stats.pkl            # Pre-computed normalization statistics
โ””โ”€โ”€ LICENSE

Usage

Basic Loading

python
import torch
from huggingface_hub import snapshot_download
from hy_vla import HyVLA, HyVLAConfig

ckpt = snapshot_download("tencent/Hy-Embodied-0.5-VLA-UMI")

config = HyVLAConfig.from_pretrained(ckpt)
policy = HyVLA.from_pretrained(ckpt, config=config)
policy.enable_video_encoder_if_needed()  # K=1 in pretrain; call this before fine-tuning with K>1
policy = policy.to(device="cuda", dtype=torch.bfloat16).eval()

# (B, K, C, H, W); K=1 history slot (pre-trained mode)
img = torch.zeros(1, 1, 3, 224, 224, device="cuda", dtype=torch.bfloat16)
# Normalized dual-arm EEF: [xyz(3) + rot6d(6) + gripper(1)] * 2
state = torch.zeros((1, config.max_state_dim), device="cuda", dtype=torch.bfloat16)
batch = {
    "observation.images.top_head":   img,
    "observation.images.hand_left":  img,
    "observation.images.hand_right": img,
    "observation.state": state,
    "task": ["pick up the bottle"],
}

with torch.no_grad():
    actions = policy.forward_evaluate(batch)["pred"]
    actions = actions[..., : config.action_feature.shape[0]]
print(actions.shape)

Fine-Tuning

This model is designed to be fine-tuned. See the main README for the SFT recipe:

bash
# Fine-tune on RoboTwin 2.0
export CHIEF_IP=<chief-ip> INDEX=0
bash scripts/train_robotwin_umi.sh

Normalization Statistics

The checkpoint includes pre-computed norm_stats.pkl derived from the full UMI pre-training corpus. If you are fine-tuning on a new dataset with substantially different statistics, you can regenerate them:

bash
python scripts/compute_norm_lance.py \
    --lance-source /path/to/your/data \
    --output norm_stats.pkl

๐Ÿ“š Citation

If you find Hy-VLA useful for your research, please cite:

bibtex
@article{zhang2026hy,
  title={Hy-Embodied-0.5-VLA: From Vision-Language-Action Models to a Real-World Robot Learning Stack},
  author={Zhang, He and Xiang, Lingzhu and Lin, Haitao and Huang, Zeyu and Wang, Minghui and Zhong, Dingyan and Dong, Yubo and Wu, Yihao and Rao, Yongming and Zhang, Dongsheng and others},
  journal={arXiv preprint arXiv:2606.14409},
  year={2026}
}

License

This model is released under Apache-2.0.