Instructions to use robbyant/lingbot-va-base with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use robbyant/lingbot-va-base with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("robbyant/lingbot-va-base", device_map="auto") - Notebooks
- Google Colab
- Kaggle
File size: 4,170 Bytes
668a680 68b7bc1 668a680 b4763c5 68b7bc1 b4763c5 68b7bc1 b4763c5 68b7bc1 b4763c5 68b7bc1 b4763c5 68b7bc1 b4763c5 2a4ee18 d171a66 b4763c5 68b7bc1 b4763c5 668a680 b4763c5 68b7bc1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 | ---
license: apache-2.0
pipeline_tag: robotics
library_name: transformers
---
<h1 align="center">Causal World Modeling for Robot Control</h1>
<p align="center">
<img src="assets/teaser.png" width="100%">
</p>
**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).
It focuses on:
- **Autoregressive Video-Action World Modeling**: Architecturally unifies visual dynamics prediction and action inference within a single interleaved sequence while maintaining their conceptual distinction.
- **High-efficiency Execution**: A dual-stream mixture-of-transformers (MoT) architecture with Asynchronous Execution and KV Cache.
- **Long-Horizon Performance and Generalization**: High improvements in sample efficiency, long-horizon success rates, and generalization to novel scenes.
---
# Model Sources
- **Repository:** [https://github.com/Robbyant/lingbot-va](https://github.com/Robbyant/lingbot-va)
- **Paper:** [Causal World Modeling for Robot Control](https://huggingface.co/papers/2601.21998)
- **Project Page:** [https://technology.robbyant.com/lingbot-va](https://technology.robbyant.com/lingbot-va)
---
# π¦ Model Download
- **Pretrained Checkpoints for Post-Training**
| Model Name | Huggingface Repository | ModelScope Repository | Description |
| :--- | :--- | :--- | :--- |
| lingbot-va-base | [π€ robbyant/lingbot-va-base ](https://huggingface.co/robbyant/lingbot-va-base) | [π€ Robbyant/lingbot-va-base ](https://modelscope.cn/models/Robbyant/lingbot-va-base) | LingBot-VA w/ shared backbone|
| lingbot-va-posttrain-robotwin | [π€ robbyant/lingbot-va-posttrain-robotwin ](https://huggingface.co/robbyant/lingbot-va-posttrain-robotwin) | [π€ Robbyant/lingbot-va-posttrain-robotwin ](https://modelscope.cn/models/Robbyant/lingbot-va-posttrain-robotwin) | LingBot-VA-Posttrain-Robotwin w/ shared backbone|
| lingbot-va-posttrain-libero-long | [π€ robbyant/lingbot-va-posttrain-libero-long ](https://huggingface.co/robbyant/lingbot-va-posttrain-libero-long) | [π€ Robbyant/lingbot-va-posttrain-libero-long ](https://modelscope.cn/models/Robbyant/lingbot-va-posttrain-libero-long) | LingBot-VA-Posttrain-Libero-Long w/ shared backbone|
---
# π οΈ Quick Start
## Installation
**Requirements**
β’ Python == 3.10.16
β’ Pytorch == 2.9.0
β’ CUDA 12.6
```bash
pip install torch==2.9.0 torchvision==0.24.0 torchaudio==2.9.0 --index-url https://download.pytorch.org/whl/cu126
pip install websockets einops diffusers==0.36.0 transformers==5.0.0 accelerate msgpack opencv-python matplotlib ftfy easydict
pip install flash-attn --no-build-isolation
```
## Run Image to Video-Action Generation
We provide a script for image to video-action generation:
```bash
NGPU=1 CONFIG_NAME='robotwin_i2av' bash script/run_launch_va_server_sync.sh
```
---
# π Performance
We evaluate our model on both simulation benchmarks and real-world scenarios, achieving state-of-the-art performance.
## Simulation Evaluation (Success Rate %)
| Method (Average 50 Tasks) | Easy SR (%) | Hard SR (%) |
| :--- | :---: | :---: |
| X-VLA | 72.9 | 72.8 |
| Οβ | 65.9 | 58.4 |
| Οβ.β
| 82.7 | 76.8 |
| Motus | 88.7 | 87.0 |
| **LingBot-VA (Ours)** | **92.9** | **91.6** |
---
# π Citation
```bibtex
@article{lingbot-va2026,
title={Causal World Modeling for Robot Control},
author={Li, Lin and Zhang, Qihang and Luo, Yiming and Yang, Shuai and Wang, Ruilin and Han, Fei and Yu, Mingrui and Gao, Zelin and Xue, Nan and Zhu, Xing and Shen, Yujun and Xu, Yinghao},
journal={arXiv preprint arXiv:2601.21998},
year={2026}
}
```
# πͺͺ License
This project is released under the Apache License 2.0. See [LICENSE](LICENSE) file for details.
# π§© Acknowledgments
This work builds upon several excellent open-source projects:
- [Wan-Video](https://github.com/Wan-Video) - Vision transformer backbone
- [MoT](https://github.com/facebookresearch/Mixture-of-Transformers) - Mixture-of-Transformers architecture |