[CVPR/CoRL 2025 candidate] LLaVA-VLA: Democratizing Robotic Intelligence with 0.5B Parameters and Mobile Capability
Rethinking the Practicality of Vision-language-action Model: A Comprehensive Benchmark and An Improved Baseline
This paper introduces CEBench, a cross-embodiment benchmark for Vision-Language-Action (VLA) models, and LLaVA-VLA, a 0.5B-parameter model that achieves SOTA performance on CALVIN and RoboTwin. The authors demonstrate that a lightweight model can outperform 7B-scale counterparts by optimizing architecture and training curricula without expensive robot-data pre-training.
TL;DR
The reign of "Bigger is Better" in Vision-Language-Action (VLA) models is being challenged. LLaVA-VLA proves that a 0.5B parameter model, when properly architected with multi-view perception and proprioceptive tokenization, can outperform 7B giants like OpenVLA. Crucially, it introduces CEBench—a benchmark focusing on domain randomization—and becomes the first end-to-end VLA to master mobile manipulation.
Problem & Motivation: The Practicality Gap
While models like RT-2 and OpenVLA have shown impressive "Generalist" capabilities, they are effectively "laboratory specimens." Their deployment is hindered by:
- Computational Cost: Billions of parameters require server-grade GPUs, making them impossible to run on a mobile robot's onboard edge computer.
- Pre-training Wall: Relying on massive cross-embodiment pre-training is expensive and often introduces "noise" from low-quality data.
- Static Constraints: Most VLAs are "table-top" models; they can pick an apple but cannot drive a mobile base to a different room to find one.
The authors' insight is simple: Efficiency over Scale. By focusing on high-quality in-domain data and a "pre-training-free" curriculum, can we make a model that is both smarter and smaller?
Methodology: The Core of LLaVA-VLA
LLaVA-VLA isn't just a compressed LLM; it’s a surgical redesign of the robot-environment interface.
1. Multi-View "Merged" Perception
Instead of complex token compression or separate encoders, the authors vertically concatenate the third-person (global context) and first-person (precise depth/position) views into a single image. This preserves spatial disparity without exploding the token count.
2. Proprioceptive Tokenization
Unlike traditional methods that use a simple MLP to inject robot state, LLaVA-VLA treats proprioception (joint positions) as a sequence of tokens. This allows the transformer backbone to "read" the robot's own body state just like it reads text or pixels.
3. Unified Action Space
To solve the "Navigation vs. Manipulation" conflict, LLaVA-VLA uses a Direction + Value token strategy. If the direction is "Turn Left," the value is the angle. If the direction is "Stop," the following tokens are interpreted as arm manipulation commands.
Fig 1: The LLaVA-VLA Architecture, highlighting the integration of multi-view inputs and action chunking.
Experiments & Results: David vs. Goliath
The most striking result is found in the CALVIN Long-Horizon Benchmark.
- LLaVA-VLA (0.5B) achieved a success rate of 53.8% on 5/5 subtasks.
- OpenVLA (7B), which is 14x larger, achieved only 43.5%.
In RoboTwin (simulation with Domain Randomization), LLaVA-VLA showed remarkable robustness. While baselines like ACT failed when lighting or textures changed, LLaVA-VLA leveraged its VLM backbone's inherent visual reasoning to generalize across environments.
Table 1: Comparative performance across CALVIN tasks. Note current SOTA metrics for the 0.5B model.
Deep Insight: Why No Pre-training?
One of the paper’s "Finding 5" is controversial yet insightful: Large-scale robot pre-training is not essential. The authors found that "post-training" on diverse multi-task data (in-domain) is sufficient. This suggests that the visual grounding provided by the base VLM (LLaVA-OneVision) is already robust enough; the model just needs to learn the "mapping" to action, which doesn't require billions of noisy robot trajectories.
Critical Analysis & Conclusion
Takeaway: LLaVA-VLA lowers the barrier for robotics research. You no longer need a H100 cluster to train a capable VLA; a single RTX 4090 is sufficient for fine-tuning.
Limitations: While the hybrid action space is clever, the "stop-then-act" logic for mobile manipulation might be too discrete for fluid "pick-while-moving" tasks. Future work should investigate more continuous transitions between base and arm control.
Future Outlook: This work paves the way for "Edge-VLAs" where robots can reason, navigate, and manipulate entirely locally, ensuring privacy and low-latency response in human environments.
