Search papers, labs, and topics across Lattice.
This paper introduces TurboVLA, a novel vision-language-action (VLA) model that reformulates the traditional $V \to L \to A$ pathway into a more efficient $V + L \to A$ mapping. By independently encoding visual observations and language instructions and facilitating lightweight bidirectional interaction, TurboVLA significantly reduces computational and memory overhead, achieving high performance with only 0.2B parameters. On the LIBERO benchmark, TurboVLA demonstrates an impressive 97.7% success rate with a latency of 31.2 ms and minimal VRAM usage, outperforming larger models while maintaining efficiency on consumer hardware.
TurboVLA achieves 97.7% success in robotic manipulation while using less than 1 GB of VRAM, challenging the dominance of LLM-centric approaches.
Vision-language-action (VLA) models commonly adopt an LLM-centric $V \to L \to A$ pathway, where visual observations are projected into the representation space of a large language model before being decoded into robot actions. Although effective, this design incurs substantial computation and memory overhead at every policy invocation. In this work, we introduce TurboVLA, a new VLA paradigm that reformulates the conventional $V \to L \to A$ pathway as a direct $V + L \to A$ mapping. Instead of using a large language model as the central interface between perception and action, TurboVLA independently encodes visual observations and language instructions, directly exchanges information between them through lightweight bidirectional vision-language interaction, and predicts continuous action chunks with a compact decoder. This simple design constructs task-conditioned representations directly from visual and linguistic features, significantly reducing the computational and memory costs of VLA inference. On LIBERO, TurboVLA achieves 97.7% average success with only 0.2B parameters, 31.2 ms inference latency, and 0.9 GB inference VRAM on a consumer-grade RTX 4090, matching or outperforming substantially larger VLA policies. These results establish TurboVLA as a simple and effective alternative to the prevailing LLM-centric VLA paradigm, offering a new perspective on how vision, language, and action can be connected for efficient robotic manipulation. Code is available at https://github.com/H-EmbodVis/TurboVLA.