TLDR: This systematic survey explores methods to make Vision-Language-Action (VLA) models, which enable robots to understand language and visuals to perform actions, more efficient. It categorizes solutions into model architecture, perception features, action generation, and training/inference strategies, highlighting techniques to reduce latency, memory, and computational costs, crucial for deploying robots on edge devices. The paper also discusses future trends like model-data co-evolution, spatio-temporal perception, and advanced learning paradigms.
Vision-Language-Action (VLA) models represent a significant leap in robotics, allowing machines to understand natural language instructions and visual observations to perform complex tasks. Imagine a robot that can not only see and understand your command to “pick up the red cup” but also execute that action smoothly and efficiently. This capability is transforming fields like manipulation and navigation, moving away from rigid, task-specific programming towards more general and adaptable robotic intelligence.
However, these advanced VLA systems come with a major challenge: their immense computational and memory requirements. Many VLA models reuse large language models and powerful visual processing components, leading to huge parameter counts, high memory usage, and slow response times. These demands often clash with the limitations of robotic platforms, especially mobile manipulators, which need to operate in real-time with limited on-board computing power and energy budgets. This tension between powerful capabilities and practical efficiency is a central focus of current research.
A recent systematic survey, titled Efficient Vision-Language-Action Models for Embodied Manipulation: A Systematic Survey, delves into the growing efforts to create more efficient and scalable VLA systems. Authored by Weifan Guan, Qinghao Hu, Aosheng Li, and Jian Cheng, the paper provides a comprehensive review of approaches designed to improve VLA efficiency by reducing latency, memory footprint, and the costs associated with training and inference.
Optimizing Model Architecture
The architecture of a VLA model is a primary factor in its overall efficiency. The survey categorizes architectural improvements into three main areas:
- Static Backbone Selection: Early VLA models often used very large vision-language models (VLMs) for broad generalization, but this led to massive computational overhead. Researchers are now focusing on “downsizing” by replacing these large backbones with lighter alternatives. For example, models like RoboMamba use more efficient state-space models, while TinyVLA and SmolVLA employ smaller language models and even prune layers to reduce parameters and computation, making them more suitable for edge deployment.
- Dynamic Computation Pathways: Instead of permanently shrinking models, this approach retains large backbones during training but dynamically selects which parts to use during inference. This allows models to keep their expressive power while skipping redundant computations for simpler tasks. Techniques include layer pruning, early-exit mechanisms (where the model can make a decision and exit early if confident), and Mixture-of-Experts (MoE) frameworks that dynamically activate only relevant layers for a given input.
- Dual-System Design: Inspired by how humans think (fast, intuitive responses vs. slow, deliberate reasoning), this design splits the VLA model into two systems. A “slow system” handles complex reasoning and long-term planning, often using a large multimodal language model. A “fast system” provides rapid, intuitive responses with a lightweight model. These systems work together, exchanging information to balance intricate tasks with low-latency requirements.
Streamlining Perception Features
Visual inputs are a major contributor to the computational burden of VLA systems. Not all visual information is equally important for decision-making; much of it can be redundant. The survey highlights two main strategies for creating compact yet task-relevant visual representations:
- Selective Feature Processing: This involves pruning, compressing, or transforming redundant visual information before it reaches the core policy networks. Methods include token pruning, where less informative visual tokens are removed based on their importance or relevance to instructions. Other techniques focus on compressing visual and textual tokens into fixed-length, compact representations.
- Temporal Sharing and Reuse: In sequential robotic tasks, adjacent frames often contain similar information. Instead of re-computing everything at each step, VLA systems can reuse computation results that remain stable over time. This includes reusing cached visual features for static parts of an image or even reusing high-level reasoning results if the environment hasn’t changed significantly.
Efficient Action Generation
The way a VLA model generates actions directly impacts control precision, response latency, and overall efficiency. The survey explores two paradigms:
- Raw Action Generation: Many VLA systems directly output a low-dimensional vector representing robot actions (e.g., position, rotation, gripper state). While efficient for real-time control, generating long sequences this way can lead to accumulated errors. To improve this, “action chunking” generates blocks of actions in one step, and techniques like action compression reduce the length of action sequences before inference.
- Reasoning-Aware Action Generation: This approach adds explicit reasoning steps before producing actions. This could involve breaking down complex goals into subtasks (language-based reasoning) or extracting spatial-semantic cues like object bounding boxes or goal states from visual input (vision-based reasoning). While these steps improve task decomposition and generalization, they add computational cost and latency. Researchers are working on streamlining these reasoning processes, for example, by reusing high-level plans or predicting only dynamic regions of an image.
Optimizing Training and Inference
Beyond architectural and representational improvements, the efficiency of VLA systems also depends on how they are trained and how inference is accelerated:
- Training Efficiency Techniques: Parameter-efficient fine-tuning (PEFT) methods like LoRA allow adapting large pre-trained models with far fewer trainable parameters, reducing memory and training time. Knowledge distillation transfers performance from a larger “teacher” model to a smaller “student” model. Structured pruning removes less important parameters, and quantization reduces the precision of model weights, making models smaller and faster, especially for deployment on resource-limited hardware.
- Inference Efficiency Techniques: Traditional autoregressive decoding, which generates outputs sequentially, can be slow. New paradigms explore non-autoregressive or parallel decoding to speed up decision-making. This includes speculative decoding, where a lightweight model quickly drafts actions that are then verified by the main model, and iterative refinement methods that predict all actions in parallel and refine them over several iterations.
Also Read:
- FALCON: Improving Robot Dexterity Through Advanced Spatial Perception
- Teaching VLA Models to Control Soft Robots for Safer Human Environments
Future Directions for Embodied Intelligence
The survey concludes by outlining several critical future directions. It emphasizes the need for a “co-evolution” of models and data, moving beyond simply more data to higher-quality, high-density physical interaction data. The transition from 2D to 3D spatio-temporal perception is crucial for robots to build a coherent understanding of their environment, requiring efficient 3D representations and hierarchical memory systems. Action generation needs to evolve from simple “conditioned reflexes” to more “deliberative reasoning,” potentially through hybrid architectures that balance speed and decision depth.
The learning paradigm is also shifting from pure imitation learning to incorporating reinforcement learning fine-tuning (RLFT) to enable exploration, adaptation, and autonomous improvement, while addressing safety and sample efficiency challenges. Finally, the authors call for a unified, scientific evaluation framework to standardize reporting on efficiency, performance, and interpretability, which is essential for advancing VLA research from prototypes to practical, engineering-grade applications.
The journey towards truly efficient, general, and reliable embodied intelligence is complex, but the systematic review provided in this paper offers a clear roadmap for researchers and developers. By addressing these efficiency challenges across all aspects of VLA design, the field can unlock the full potential of intelligent robots in the real world.


