Robotics
Transformers
Diffusers
Safetensors
fengchang-ll commited on
Commit
68b7bc1
·
verified ·
1 Parent(s): d171a66

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +50 -21
README.md CHANGED
@@ -1,32 +1,32 @@
1
  ---
2
  license: apache-2.0
3
- language:
4
- - en
5
  ---
6
- <h1 align="center">Causal World Modeling for Robot Control</h1>
7
 
 
8
 
9
  <p align="center">
10
  <img src="assets/teaser.png" width="100%">
11
  </p>
12
 
13
- **LingBot-VA** has focused on:
 
 
14
  - **Autoregressive Video-Action World Modeling**: Architecturally unifies visual dynamics prediction and action inference within a single interleaved sequence while maintaining their conceptual distinction.
15
- - **High-efficiency Execution**: A dual-stream mixture-of-transformers(MoT) architecture with Asynchronous Execution and KV Cache.
16
  - **Long-Horizon Performance and Generalization**: High improvements in sample efficiency, long-horizon success rates, and generalization to novel scenes.
17
 
18
-
19
  ---
20
 
21
- # Model Sources
22
 
23
  - **Repository:** [https://github.com/Robbyant/lingbot-va](https://github.com/Robbyant/lingbot-va)
24
- - **Paper:** [https://arxiv.org/abs/2601.21998](https://arxiv.org/abs/2601.21998)
25
  - **Project Page:** [https://technology.robbyant.com/lingbot-va](https://technology.robbyant.com/lingbot-va)
26
 
27
  ---
28
 
29
-
30
  # 📦 Model Download
31
  - **Pretrained Checkpoints for Post-Training**
32
 
@@ -37,7 +37,46 @@ language:
37
  | lingbot-va-posttrain-libero-long &nbsp; | [🤗 robbyant/lingbot-va-posttrain-libero-long &nbsp;](https://huggingface.co/robbyant/lingbot-va-posttrain-libero-long) | [🤖 Robbyant/lingbot-va-posttrain-libero-long &nbsp;](https://modelscope.cn/models/Robbyant/lingbot-va-posttrain-libero-long) | LingBot-VA-Posttrain-Libero-Long w/ shared backbone|
38
  ---
39
 
40
- # 📚Citation
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
41
 
42
  ```bibtex
43
  @article{lingbot-va2026,
@@ -48,7 +87,6 @@ language:
48
  }
49
  ```
50
 
51
-
52
  # 🪪 License
53
 
54
  This project is released under the Apache License 2.0. See [LICENSE](LICENSE) file for details.
@@ -56,14 +94,5 @@ This project is released under the Apache License 2.0. See [LICENSE](LICENSE) fi
56
  # 🧩 Acknowledgments
57
 
58
  This work builds upon several excellent open-source projects:
59
-
60
  - [Wan-Video](https://github.com/Wan-Video) - Vision transformer backbone
61
- - [MoT](https://github.com/facebookresearch/Mixture-of-Transformers) - Mixture-of-Transformers architecture
62
- - The broader open-source computer vision and robotics communities
63
-
64
- <!-- ---
65
-
66
- For questions, discussions, or collaborations: -->
67
-
68
- <!-- - **Issues**: Open an [issue](https://github.com/robbyant/lingbot-depth/issues) on GitHub
69
- - **Email**: Contact Dr. [Bin Tan](https://https://icetttb.github.io/) (tanbin.tan@antgroup.com) or Dr. [Nan Xue](https://xuenan.net) (xuenan.xue@antgroup.com) -->
 
1
  ---
2
  license: apache-2.0
3
+ pipeline_tag: robotics
4
+ library_name: transformers
5
  ---
 
6
 
7
+ <h1 align="center">Causal World Modeling for Robot Control</h1>
8
 
9
  <p align="center">
10
  <img src="assets/teaser.png" width="100%">
11
  </p>
12
 
13
+ **LingBot-VA** is an autoregressive diffusion framework that learns frame prediction and policy execution simultaneously, introduced in the paper [Causal World Modeling for Robot Control](https://huggingface.co/papers/2601.21998).
14
+
15
+ It focuses on:
16
  - **Autoregressive Video-Action World Modeling**: Architecturally unifies visual dynamics prediction and action inference within a single interleaved sequence while maintaining their conceptual distinction.
17
+ - **High-efficiency Execution**: A dual-stream mixture-of-transformers (MoT) architecture with Asynchronous Execution and KV Cache.
18
  - **Long-Horizon Performance and Generalization**: High improvements in sample efficiency, long-horizon success rates, and generalization to novel scenes.
19
 
 
20
  ---
21
 
22
+ # Model Sources
23
 
24
  - **Repository:** [https://github.com/Robbyant/lingbot-va](https://github.com/Robbyant/lingbot-va)
25
+ - **Paper:** [Causal World Modeling for Robot Control](https://huggingface.co/papers/2601.21998)
26
  - **Project Page:** [https://technology.robbyant.com/lingbot-va](https://technology.robbyant.com/lingbot-va)
27
 
28
  ---
29
 
 
30
  # 📦 Model Download
31
  - **Pretrained Checkpoints for Post-Training**
32
 
 
37
  | lingbot-va-posttrain-libero-long &nbsp; | [🤗 robbyant/lingbot-va-posttrain-libero-long &nbsp;](https://huggingface.co/robbyant/lingbot-va-posttrain-libero-long) | [🤖 Robbyant/lingbot-va-posttrain-libero-long &nbsp;](https://modelscope.cn/models/Robbyant/lingbot-va-posttrain-libero-long) | LingBot-VA-Posttrain-Libero-Long w/ shared backbone|
38
  ---
39
 
40
+ # 🛠️ Quick Start
41
+
42
+ ## Installation
43
+ **Requirements**
44
+ • Python == 3.10.16
45
+ • Pytorch == 2.9.0
46
+ • CUDA 12.6
47
+
48
+ ```bash
49
+ pip install torch==2.9.0 torchvision==0.24.0 torchaudio==2.9.0 --index-url https://download.pytorch.org/whl/cu126
50
+ pip install websockets einops diffusers==0.36.0 transformers==5.0.0 accelerate msgpack opencv-python matplotlib ftfy easydict
51
+ pip install flash-attn --no-build-isolation
52
+ ```
53
+
54
+ ## Run Image to Video-Action Generation
55
+ We provide a script for image to video-action generation:
56
+
57
+ ```bash
58
+ NGPU=1 CONFIG_NAME='robotwin_i2av' bash script/run_launch_va_server_sync.sh
59
+ ```
60
+
61
+ ---
62
+
63
+ # 📊 Performance
64
+
65
+ We evaluate our model on both simulation benchmarks and real-world scenarios, achieving state-of-the-art performance.
66
+
67
+ ## Simulation Evaluation (Success Rate %)
68
+
69
+ | Method (Average 50 Tasks) | Easy SR (%) | Hard SR (%) |
70
+ | :--- | :---: | :---: |
71
+ | X-VLA | 72.9 | 72.8 |
72
+ | π₀ | 65.9 | 58.4 |
73
+ | π₀.₅ | 82.7 | 76.8 |
74
+ | Motus | 88.7 | 87.0 |
75
+ | **LingBot-VA (Ours)** | **92.9** | **91.6** |
76
+
77
+ ---
78
+
79
+ # 📚 Citation
80
 
81
  ```bibtex
82
  @article{lingbot-va2026,
 
87
  }
88
  ```
89
 
 
90
  # 🪪 License
91
 
92
  This project is released under the Apache License 2.0. See [LICENSE](LICENSE) file for details.
 
94
  # 🧩 Acknowledgments
95
 
96
  This work builds upon several excellent open-source projects:
 
97
  - [Wan-Video](https://github.com/Wan-Video) - Vision transformer backbone
98
+ - [MoT](https://github.com/facebookresearch/Mixture-of-Transformers) - Mixture-of-Transformers architecture