Views
No views yet


| Model Type | Model Name | Parameters | Description |
|---|---|---|---|
| Motion Model | Being-H0-GRVQ-8K | - | Motion tokenizer |
| VLA Pre-trained | Being-H0-1B-2508 | 1B | Base vision-language-action model |
| VLA Pre-trained | Being-H0-8B-2508 | 8B | Base vision-language-action model |
| VLA Pre-trained | Being-H0-14B-2508 | 14B | Base vision-language-action model |
| VLA Post-trained | Being-H0-8B-Align-2508 | 8B | Fine-tuned for robot alignment |
| Dataset Type | Dataset Name | Description |
|---|---|---|
| VLA Post-training | h0_post_train_db_2508 | Post-training dataset for pretrained Being-H0 VLA model |
1git clone https://github.com/BeingBeyond/Being-H0.git
2cd Being-H01conda env create -f environment.yml
2conda activate beingvla1pip install flash-attn --no-build-isolation
2pip install git+https://github.com/lixiny/manotorch.git
3pip install git+https://github.com/mattloper/chumpy.gitmano_v*_*.zip). Note that all code and data from this download falls under the MANO license.mano_v*_*/ folder to the beingvla/models/motion/mano/ folderBeing-H0-GRVQ-8K) and the pretrained VLA model (Being-H0-{1B,8B,14B}-2508).--motion_code_path, you should use a + symbol to jointly specify the wrist and finger motion code paths, e.g., --motion_code_path "/path/to/Being-H0-GRVQ-8K/wrist/+/path/to/Being-H0-GRVQ-8K/finger/".--hand_mode can be set to left, right, or both to specify which hand to use for the task.1python -m beingvla.inference.vla_internvl_inference \
2 --model_path /path/to/Being-H0-XXX \
3 --motion_code_path "/path/to/Being-H0-GRVQ-8K/wrist/+/path/to/Being-H0-GRVQ-8K/finger/" \
4 --input_image ./playground/unplug_airpods.jpg \
5 --task_description "unplug the charging cable from the AirPods" \
6 --hand_mode both \
7 --num_samples 3 \
8 --num_seconds 4 \
9 --enable_render true \
10 --gpu_device 0 \
11 --output_dir ./work_dirs/Being-H0-8B-Align-2508), you can use the following commands to communicate with real robot, or evaluate the model on a robot task.1python -m beingvla.models.motion.m2m.aligner.run_server \
2 --model-path /path/to/Being-H0-XXX-Align \
3 --port 12305 \
4 --action-chunk-length 161python -m beingvla.models.motion.m2m.aligner.eval_policy \
2 --model-path /path/to/Being-H0-XXX-Align \
3 --zarr-path /path/to/real-robot/data \
4 --task_description "Put the little white duck into the cup." \
5 --action-chunk-length 161@article{beingbeyond2025beingh0,
2 title={Being-H0: Vision-Language-Action Pretraining from Large-Scale Human Videos},
3 author={Luo, Hao and Feng, Yicheng and Zhang, Wanpeng and Zheng, Sipeng and Wang, Ye and Yuan, Haoqi and Liu, Jiazheng and Xu, Chaoyi and Jin, Qin and Lu, Zongqing},
4 journal={arXiv preprint arXiv:2507.15597},
5 year={2025}
6}