# 🌐 UniVLA: Unified Vision-Language-Action Model A general-purpose **VLA Model** designed to unify **vision, language, and action** for robotics and autonomous driving. UniVLA > πŸ“œ [[technical report](https://arxiv.org/abs/2506.19850)] πŸ€— [[model weights](https://huggingface.co/Yuqi1997/UniVLA)] πŸ€– [[project page](https://robertwyq.github.io/univla.github.io)] ## πŸš€ News - **2025.10.15**: DriveVLA-W0, extended the UniVLA framework to autonomous driving, [code](https://github.com/BraveGroup/DriveVLA-W0) released. - **2025.6.27**: code released for robotic simulations. - **2025.6.25**: paper released on the arXiv. ## πŸ§ͺ Highlights - [x] **Unified Vision-Language-Action Model**: supports image grounding, video generation, and action prediction. - [x] **Strong Performance on Several Robotics Benchmarks**: support CALVIN, LIBERO, SimplerEnv. - [x] **Interleaved Video Training**: support interleaved vision-action training in Markov Decision Process. - [x] **Broader Applications**: Real-robot ALOHA & Autonomous Driving. ## πŸ”§ REPO TODO List - [x] Policy learning for CALVIN, LIBERO, and SimplerEnv. - [x] Support for evaluation. - [x] World model pretraining for video generation. - [x] Example for real-robot ALOHA. - [x] Support for autonomous driving. - [ ] Support for general grounding. ## πŸ“š Experiments ### Emu3 Pretraining Models You can download the pretraining models from HuggingFace, here we provide the links. > [Emu3-base](https://huggingface.co/BAAI/Emu3-Stage1) > [Emu3-vision](https://huggingface.co/BAAI/Emu3-VisionTokenizer) ### World Model Training More details can be found in the [World Model Training](docs/world_model.md) document. ```shell # train the world model bash scripts/pretrain/train_video_1node.sh ``` > [world model pretraining ckpts](https://huggingface.co/Yuqi1997/UniVLA/tree/main/WORLD_MODEL_POSTTRAIN) This model is used to serve as the prerained model for the downstream policy learning tasks, such as CALVIN, LIBERO, and SimplerEnv. ### 1. CALVIN Benchmark | Method | Mode | Setting | AVG | CKPT | |--------|-------|----------------------------------------------|------|------| | UniVLA | video sft | ABCD->D | 4.63 (5x:4.71) | [huggingface](https://huggingface.co/Yuqi1997/UniVLA/tree/main/UNIVLA_CALVIN_ABCD_VIDEO_BS192_8K) | > **Note:** 5Γ— means 5Γ— inference steps, i.e., 180 steps total. #### Training - Here provide single node training script, recommend multi-node training. ```shell # video sft bash scripts/simulator/calvin/train_calvin_abcd_video.sh ``` ### 2. LIBERO Benchmark | Method | Mode | SPATIAL | OBJECTS | GOAL | 10 | AVG | CKPT | |--------|-------|---------|---------|-------|------|-------| -----| | UniVLA | img sft | 97.0 | 99.0 | 92.6 | 90.8 | 94.8 | [huggingface](https://huggingface.co/Yuqi1997/UniVLA/tree/main/UNIVLA_LIBERO_IMG_BS192_8K) | | UniVLA | video sft | 95.4 | 98.8 | 93.6 | 94.0 | 95.5 | [huggingface](https://huggingface.co/Yuqi1997/UniVLA/tree/main/UNIVLA_LIBERO_VIDEO_BS192_8K) | #### Training ```shell bash scripts/simulator/libero/train_libero_video.sh ``` ### 3. SimplerEnv Benchmark | Method | Robot |Mode | Put Spoon | Put Carrot | Stack Block | Put Eggplant | AVG | CKPT | |--------|-------|-------| -----------|------------|--------------|----------------|-------| -----| | UniVLA | Bridge(WidowX) | video sft | 83.3 | 66.7 | 33.3 | 95.8 | 69.8 | [huggingface](https://huggingface.co/Yuqi1997/UniVLA/tree/main/UNIVLA_SIMPLER_BRIDGE_VIDEO_BS128_20K) | #### Training ```shell bash scripts/simulator/simplerenv/train_simplerenv_bridge_video.sh ``` ## Setup > Here we provide a conda environment setup for the project. ```shell conda create -n emu_vla python=3.10 pip install -r requirements.txt ``` ### Benchmark setup, training and evaluation - [CALVIN](docs/calvin.md) - [LIBERO](docs/libero.md) - [SimplerEnv](docs/simplerenv.md) - [ALOHA](docs/aloha.md)

πŸ“ Code Structure

OmniSim/
β”œβ”€β”€ configs/       # Model configuration files
β”œβ”€β”€ models/        # Tokenizer and diffusion test
β”œβ”€β”€ train/         # Training dataset and pipeline
β”œβ”€β”€ reference/     # Reference code
β”‚   β”œβ”€β”€ Emu3/      # Base code
β”‚   └── RoboVLMs/  # Evaluation code
β”œβ”€β”€ scripts/       # Shell scripts for training & evaluation
β”œβ”€β”€ tools/         # Data preprocessing tools
└── README.md      # Project description and user guide
    
## ❀️ Acknowledgement Our work is built upon the following projects, Thanks for their great open-source work! - [Emu3](https://github.com/baaivision/Emu3) - [RoboVLMs](https://github.com/Robot-VLAs/RoboVLMs) - [OpenVLA](https://github.com/openvla/openvla) ## 🌟Citation If you find this project useful, please consider citing our work: ```bibtex @article{wang2025unified, title={Unified Vision-Language-Action Model}, author={Wang, Yuqi and Li, Xinghang and Wang, Wenxuan and Zhang, Junbo and Li, Yingyan and Chen, Yuntao and Wang, Xinlong and Zhang, Zhaoxiang}, journal={arXiv preprint arXiv:2506.19850}, year={2025} } ```