Robotics
English
VLA
Robotics
Humanoid
Cognition2ActionLab commited on
Commit
b6d6b37
·
verified ·
1 Parent(s): ca3b9b1

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +67 -3
README.md CHANGED
@@ -1,3 +1,67 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # HEX Model Checkpoint
2
+
3
+ This repository hosts the pretrained checkpoint of [**HEX: Humanoid-Aligned Experts for Cross-Embodiment Whole-Body Manipulation**](https://arxiv.org/abs/2604.07993).
4
+
5
+ **HEX** is a humanoid whole-body Vision-Language-Action model for cross-embodiment manipulation. The released checkpoint contains the pretrained model weights and configuration files required for model inference.
6
+
7
+
8
+ ## Repository Contents
9
+
10
+ | Model | Params | Description |
11
+ |:-----:|:------:|:------------|
12
+ | HEX | 2.4B | Pretrained HEX checkpoint for humanoid whole-body manipulation |
13
+
14
+
15
+ This repository contains the pretrained HEX checkpoint files, including model weights and the corresponding configuration files.
16
+
17
+
18
+ ## Download
19
+
20
+ Please follow the instructions in the [HEX GitHub repository](https://github.com/Cognition2Action-Lab/HEX) to download and use the checkpoint.
21
+
22
+ You may also download the checkpoint directly with the Hugging Face CLI:
23
+
24
+ ```bash
25
+ huggingface-cli download Cognition2ActionLab/HEX-model \
26
+ --local-dir /path/to/save/HEX-model
27
+ ```
28
+
29
+ Or with Python:
30
+
31
+ ```python
32
+ from huggingface_hub import snapshot_download
33
+
34
+ snapshot_download(
35
+ repo_id="Cognition2ActionLab/HEX-model",
36
+ repo_type="model",
37
+ local_dir="/path/to/save/HEX-model",
38
+ )
39
+ ```
40
+
41
+ ## Base Model Requirement
42
+
43
+ HEX uses [**Qwen3-VL**](https://huggingface.co/Qwen/Qwen3-VL-2B-Instruct) as the base vision-language model. Please download the Qwen3-VL model separately before running inference.
44
+
45
+
46
+
47
+ ## Dataset
48
+
49
+ The processed HEX dataset is hosted in [Cognition2ActionLab/eai_real_world](https://huggingface.co/datasets/Cognition2ActionLab/eai_real_world).
50
+
51
+
52
+ ## License
53
+
54
+ This checkpoint is released under the Apache-2.0 License.
55
+
56
+ ## Citation
57
+
58
+ If you use this checkpoint, please cite our work:
59
+
60
+ ```bibtex
61
+ @article{bai2026hex,
62
+ title={HEX: Humanoid-Aligned Experts for Cross-Embodiment Whole-Body Manipulation},
63
+ author={Bai, Shuanghao and Li, Meng and Lv, Xinyuan and Wang, Jiawei and Wang, Xinhua and Liao, Fei and Hou, Chengkai and Gu, Langzhe and Zhou, Wanqi and Wu, Kun and others},
64
+ journal={arXiv preprint arXiv:2604.07993},
65
+ year={2026}
66
+ }
67
+ ```