Hengyi Xie
, Chenfei Yao
, Xianjin Wu
, Xuanyang Xi
, Yiping Tang
, Di Xu
Yingying Zhu
Dingkang Liang
, Xiang Bai
, Han Ding
Huawei Technologies Co. Ltd, China
{hengyi_xie, yaochenfei, dkliang, xbai}@hust.edu.cn
{xixuanyang, tangyiping, xudi21}@huawei.com
Equal contribution, listed alphabetically by surname.
Abstract
Vision-language-action (VLA) models commonly adopt an LLM-centric 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 pathway as a direct 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.
1 Introduction
Vision-language-action (VLA) models have become a powerful framework for language-conditioned robotic manipulation, connecting visual observations, natural-language instructions, and robot actions within a unified policy (Brohan et al., 2023; Zitkovich et al., 2023; Kim et al., 2024; Octo Model Team et al., 2024; Black et al., 2025a; Physical Intelligence et al., 2025; Liu et al., 2025; Li et al., 2024; Fu et al., 2025). A common design is to place a large language model at the center of this process. Such systems effectively follow an indirect pathway: visual observations are converted into language-aligned representations, combined with the task instruction, processed by the large language model, and subsequently decoded into actions (Driess et al., 2023; Zitkovich et al., 2023; Kim et al., 2024). This design transfers broad semantic knowledge from large-scale pretraining to robot control and supports open-vocabulary understanding, semantic generalization, and high-level reasoning.
LLM-centric VLA models, however, introduce a substantial bottleneck for real-time robotic execution, which is critical for responsive interaction, high-throughput manipulation, and deployment on resource-constrained robotic platforms. As summarized in Fig. 2(a), existing LLM-centric VLA models mainly follow two action-generation designs. Autoregressive VLA models, such as OpenVLA (Kim et al., 2024) and RT-2 (Zitkovich et al., 2023), represent actions as tokens and therefore inherit the sequential decoding cost of language generation. Recent methods alleviate this cost through parallel action decoding, continuous action heads, or dedicated action experts (Black et al., 2025a; Physical Intelligence et al., 2025; Kim et al., 2025; Li et al., 2024; Shukor et al., 2025). Although these action-expert designs avoid token-by-token action generation, visual observations and instructions are still processed through language models with billions of parameters before actions are predicted. These large language-model cores impose substantial computation and memory overhead, resulting in high inference latency and limiting control frequency. This raises a more fundamental question: how to design a simple, elegant and efficient VLA that directly maps vision and language to actions for execution-level manipulation, without centering on a large language model?
Our key observation is that language is necessary for instruction-conditioned manipulation, but execution-level control need not be centered on a large language model. Once the instruction already specifies the intended manipulation skill, the execution policy does not need to perform open-ended language generation or autonomous task decomposition. Instead, it primarily needs to use the instruction to determine how the current visual evidence should guide action. In current LLM-centric VLA models, this interaction is mediated through a general-purpose language-model representation whose broad reasoning and generative capacity exceeds the requirements of many execution-level tasks. A lightweight text encoder, such as BERT (Devlin et al., 2019), can provide the execution-relevant semantics of the instruction, while compact cross-modal interaction allows language and vision to jointly construct a control-oriented representation (Lynch and Sermanet, 2020; Shridhar et al., 2022; Jang et al., 2022; Mees et al., 2022b). This suggests a different VLA paradigm: rather than organizing perception and control around an LLM-centered latent space, vision and language can interact directly to form representations specialized for continuous action prediction.
Therefore, we propose TurboVLA, a simple yet efficient model for real-time language-conditioned manipulation. As shown in Fig. 2(a), TurboVLA separately processes visual observations and task instructions using a visual encoder and a lightweight text encoder. Inspired by the efficient cross-modal interaction used in advanced visual grounding models such as Grounding DINO (Liu et al., 2024b), TurboVLA replaces the large-language-model-centered execution pathway with direct vision-language interaction, avoiding the computation and memory overhead of processing multimodal inputs through a billion-parameter language model. A compact cross-attention module efficiently fuses instruction and visual features, which are then decoded into continuous action chunks in a single forward pass (Zhao et al., 2023), without autoregressive action-token generation. This lightweight design significantly reduces inference latency and GPU memory usage.
Extensive experiments show that TurboVLA achieves real-time execution while preserving strong manipulation performance. On a consumer-grade RTX 4090, it requires only 31.2 ms of end-to-end policy latency, measured from receiving the current multimodal observation to producing an action chunk, corresponding to more than 30 action chunk predictions per second (32 Hz). TurboVLA contains only 0.2B parameters, approximately 6% the parameter count of (Physical Intelligence et al., 2025), while using less than 1 GB VRAM during inference. Despite this lightweight design, TurboVLA achieves 97.7% average success on LIBERO (Liu et al., 2023), matching the performance of substantially larger VLA systems. As summarized in Fig. 2(b), TurboVLA provides a favorable trade-off among manipulation performance, inference latency and model scale, thereby lowering the hardware barrier to deploying language-conditioned manipulation policies in latency-sensitive and resource-constrained robotic systems. More broadly, these results motivate the VLA community to examine whether execution-level control must remain centered on large language models and to evaluate future systems beyond task success alone. Our contributions are summarized as follows:
- •
We revisit the LLM-centric design of existing VLA models and identify the large language model core as a major bottleneck for real-time action execution. Based on this analysis, we introduce a real-time VLA paradigm that retains language conditioning while removing the large language model from execution-level control.
- •
We propose TurboVLA, a simple and efficient model that combines lightweight instruction encoding, direct vision-language interaction, robot-state conditioning, and non-autoregressive continuous action chunk prediction.
- •
Experiments on LIBERO show that TurboVLA achieves 97.7% average success while running at over 30 online policy inferences per second on a consumer-grade RTX 4090 with only 0.2B parameters and less than 1 GB of inference VRAM. Beyond LIBERO, TurboVLA remains effective in challenging bimanual and real-world settings.
2 Related Work
Vision-language-action models. Vision-language-action (VLA) models integrate visual observations, task instructions, and action prediction within a unified policy, often leveraging large-scale vision-language pretraining for semantic generalization. RT-1 (Brohan et al., 2023) demonstrated scalable transformer-based robot control, while RT-2 (Zitkovich et al., 2023) and OpenVLA (Kim et al., 2024) adapted pretrained vision-language models to robot trajectories through an action-token interface. Continuous-control models such as (Black et al., 2025a) and (Physical Intelligence et al., 2025) instead attach dedicated action experts to pretrained multimodal backbones. This generalist VLA direction has also been advanced through cross-embodiment datasets (O’Neill et al., 2024), reusable policy representations (Octo Model Team et al., 2024), diffusion-based robot policies (Liu et al., 2025; Li et al., 2024), and foundation models for diverse embodiments (Bjorck et al., 2025; Bu et al., 2025; Wang et al., 2026c). Recent approaches augment VLA learning with visual foresight (Yang et al., 2026), predictive world knowledge (Zhang et al., 2025c), and latent reasoning (Bai et al., 2026). Other methods incorporate geometry-aware control representations through pose-centric pretraining or point-action interaction (Lin et al., 2026a; Chen et al., 2026a). Recent work further extends VLA policies to dynamic manipulation by incorporating temporal motion cues and short-horizon future prediction (Fang et al., 2026). Together, these works demonstrate the benefits of large pretrained multimodal representations and increasingly expressive intermediate representations. TurboVLA focuses on a different architectural choice: rather than routing every control step through a large generative multimodal backbone, it encodes task text separately and integrates it directly with visual observations and robot state for execution-level action prediction.
Efficient execution in VLA policies. Recent work improves VLA efficiency through both action-side redesign and backbone-side optimization. Action-as-token policies inherit the sequential decoding process of language models, motivating continuous action experts (Black et al., 2025a; Physical Intelligence et al., 2025; Kim et al., 2025), compact and structured action tokenizers (Pertsch et al., 2025; Liu et al., 2026), and action chunking with parallel decoding (Liu et al., 2025; Liang et al., 2026c). Compact VLA architectures, including TinyVLA (Wen et al., 2025), RoboMamba (Liu et al., 2024a), SmolVLA (Shukor et al., 2025), and Evo-1 (Lin et al., 2026b), reduce model scale or inference cost while retaining pretrained multimodal representations. A complementary line of work reduces redundant backbone computation through quantization (Xu et al., 2026; Wang et al., 2025), token reuse or pruning (Xu et al., 2025; Jiang et al., 2025), dynamic depth (Yang et al., 2025), structural pruning (Wang et al., 2026a; Zhang et al., 2026), and distillation (Chen et al., 2026c; Jeon et al., 2026). Other methods improve responsiveness without changing the base policy, including asynchronous action-chunk execution (Black et al., 2025b), streaming inference and horizon-aware flow sampling (Lu et al., 2026), and speculative inference (Niu et al., 2026). These approaches accelerate action generation or reduce computation while largely retaining a large multimodal backbone as the execution representation. In contrast, TurboVLA removes the large generative language backbone from the low-level control pathway and constructs the action representation directly from compact visual, textual, and proprioceptive features.
Language interfaces for robot control. Textual instructions can serve as task specifications that condition perception and control rather than as prompts for generative language modeling. Early imitation-learning methods demonstrated that a shared policy can map visual observations and natural-language commands directly to different manipulation behaviors (Lynch and Sermanet, 2020; Stepputtis et al., 2020). CLIPort (Shridhar et al., 2022) combines pretrained vision-language semantics with a spatial manipulation pathway, while BC-Z (Jang et al., 2022) conditions a multi-task policy on pretrained text or human-video embeddings. CALVIN (Mees et al., 2022b) and HULC (Mees et al., 2022a) extend textual task conditioning to long-horizon control from unstructured demonstrations. PerAct (Shridhar et al., 2023) incorporates textual goals into a voxel-based transformer policy, whereas VIMA (Jiang et al., 2023) represents tasks through interleaved textual and visual prompts. Beyond execution-level policies, embodied multimodal language models combine language understanding, 3D grounding, and task scheduling to generate grounded action plans (Liang et al., 2026a). Such planning-oriented capabilities are complementary to the efficient execution-level control studied in this work. These works establish textual representations as effective task inputs for robot control. TurboVLA studies this interface under the current VLA paradigm, examining whether a compact text encoder and direct vision-text interaction are sufficient for high-performance, real-time continuous control.
3 Preliminaries
LLM-centric vision-language-action models. Most existing VLA models (Kim et al., 2024; Black et al., 2025a; Physical Intelligence et al., 2025; Zhou et al., 2025; Fu et al., 2025) place a large language model at the center of the vision-to-action pathway. Given visual observations , a visual encoder first extracts visual features and projects them into the token space of the language model. The projected visual tokens are then concatenated with the tokenized task instruction and jointly processed by the large language model:
| (1) |
where denotes the visual encoder, maps visual features into the language model embedding space, denotes the instruction tokens, and is the large language model. Importantly, the stage is not merely responsible for encoding language. It serves as the central representational bridge between visual perception and robot action: visual information is aligned with the language-model space, integrated with the task instruction, and transformed into the multimodal representation from which actions are predicted. We therefore summarize this prevailing computation pathway as , where denotes the LLM-centered multimodal interface.
Existing LLM-centric VLA models mainly differ in how actions are generated from . Autoregressive models discretize robot actions and predict them sequentially from the language model representation (Zitkovich et al., 2023; Kim et al., 2024), whereas action-expert models use a separate continuous decoder,
| (2) |
to generate actions in parallel (Black et al., 2025a; Physical Intelligence et al., 2025; Kim et al., 2025; Li et al., 2024). Although action-expert models avoid token-by-token action generation, they preserve the same representational dependency, as the action decoder operates on features produced by the large language model. Thus, despite using different action-generation mechanisms, both designs retain as the central bridge from visual perception to action prediction.
Direct vision-language interaction. Cross-attention provides a simple and efficient mechanism for directly exchanging information between visual and language features. Given visual features and instruction features , language-conditioned visual features can be obtained by
| (3) |
while vision-aware instruction features are produced by exchanging the query and context modalities. Such bidirectional interaction allows task language to shape visual processing while visual context refines the instruction representation. Vision-language grounding models such as Grounding DINO (Liu et al., 2024b) employ this type of direct cross-modal interaction to establish fine-grained correspondence between textual concepts and visual content. While these models use the resulting features for object localization, we use direct vision-language interaction to construct control-oriented representations for continuous action prediction.
4 TurboVLA
We introduce TurboVLA, a direct and simple paradigm for execution-level language-conditioned manipulation. As illustrated in Fig. 3(a), TurboVLA first encodes visual observations and the task instruction using a vision encoder and a lightweight text encoder. A simple and compact vision-language interaction module then directly exchanges information between the two modalities to construct action-ready features. Finally, an action chunk decoder combines these features with the current robot state and predicts a complete sequence of continuous actions in a single forward pass. Unlike LLM-centric VLA models, our method does not route visual and textual inputs through a large language model before action prediction.
4.1 Multimodal Feature Encoding
To reduce the overhead of an LLM-centered execution pathway while retaining simple yet sufficient instruction understanding, TurboVLA uses compact modality-specific encoders. Execution-level instructions typically specify manipulation skills through objects, attributes, and spatial relations, without requiring open-ended generation or task-level planning. We therefore encode instructions with a lightweight encoder such as BERT (Devlin et al., 2019) and process visual observations with a vision encoder. As shown in Fig. 3(a), the resulting features are projected into a shared hidden dimension for subsequent vision-language interaction and action prediction. Given a task instruction , the text encoder extracts token-level instruction features:
| (4) |
where projects the encoder output into the policy dimension and is the number of instruction tokens. We retain the complete token sequence rather than a pooled embedding so that objects, attributes, and spatial relations remain available for fine-grained visual conditioning.
For each camera observation , the image encoder extracts spatial visual features, which are projected and augmented with positional and camera-view embeddings:
| (5) |
Here, preserves within-view spatial structure and identifies the camera source. Concatenating the streams retains complementary cues from multiple viewpoints.
The robot state is required for translating task-conditioned scene features into executable actions but not necessary for visual-language correspondence. We encode it separately as
| (6) |
where is a lightweight projection network. State features are introduced directly to the action decoder, keeping cross-modal interaction focused on task-conditioned scene understanding. These modality-specific encoders replace the high-dimensional LLM interface with compact feature sequences tailored to execution-level manipulation, reducing intermediate activation memory and downstream attention cost while preserving the information required for control.
4.2 Vision-Language Interaction Module
Independently encoded visual and textual features do not yet identify which visual content is relevant to the current instruction. While LLM-centric VLAs perform this alignment within a large language backbone, TurboVLA instead uses the simple yet efficient vision-language interaction module in Fig. 3(b) to directly exchange information between the two streams.
Let and denote the initial visual and instruction features. The interaction module progressively updates both streams through bidirectional cross-modal layers:
| (7) |
Each layer consists of layer normalization, bidirectional cross-attention, and modality-specific feed-forward networks with residual connections. Visual-to-instruction attention injects scene context into the instruction stream, while instruction-to-visual attention conditions visual features on task semantics. After the final layer, the updated streams are concatenated as
| (8) |
Through this compact interaction module, information including target objects, attributes, and spatial relations can modulate the relevant visual features, while the instruction representation is simultaneously adapted to the current scene. This simple interaction design efficiently provides task-specific multimodal information for action prediction without relying on the broad generative and reasoning capacity of a large language model.
4.3 Continuous Action Chunk Prediction
We use a ACT-style (Zhao et al., 2023) lightweight transformer decoder to map the fused multimodal representation and robot-state features to a sequence of continuous actions:
| (9) |
where contains learnable action queries and denotes the action chunk decoder. Introducing the robot state at this stage provides the current embodiment configuration while leaving the preceding interaction module focused on task-conditioned scene understanding.
All action queries are decoded in parallel, allowing the policy to predict the complete -step action chunk in a single forward pass without action tokenization or sequential generation. We train TurboVLA through behavior cloning on expert action chunks. Given a target sequence , the training objective is loss, and no auxiliary language-modeling objective is required. Together, compact feature encoding, direct vision-language interaction, and parallel action decoding form the efficient execution pathway shown in Fig. 3(a).
5 Experiments
We evaluate whether TurboVLA can retain strong language-conditioned manipulation performance while substantially reducing the model scale, inference latency, and memory overhead of LLM-centric VLA policies. We first describe the implementation details and evaluation protocols for LIBERO (Liu et al., 2023), RoboTwin 2.0 (Chen et al., 2026b), and real-world deployment. We then evaluate the performance–efficiency trade-off on single-arm manipulation, examine the scalability of the proposed architecture to bimanual multi-task control, validate its effectiveness in real-world deployment, and ablate the major components of our direct vision-language interaction design.
5.1 Implementation Details
We use DINOv3 (Siméoni et al., 2025) as the visual backbone and BERT (Devlin et al., 2019) as the lightweight instruction encoder. Visual and textual features are projected into a shared space with and processed by bidirectional vision-language interaction layers initialized from grounding-pretrained feature-enhancement weights (Liu et al., 2024b). An ACT-style transformer decoder (Zhao et al., 2023) maps the resulting multimodal features and robot state to continuous action chunks. Across all benchmarks, we train through behavior cloning with the loss, using a learning rate of on four RTX 4090 GPUs. Benchmark-specific settings are described below.
5.2 Benchmarks and Metrics
We evaluate TurboVLA across three complementary settings: single-arm manipulation on LIBERO (Liu et al., 2023), bimanual manipulation on RoboTwin 2.0 (Chen et al., 2026b), and deployment on a real robotic platform.
LIBERO contains four suites—LIBERO-Object, LIBERO-Spatial, LIBERO-Goal, and LIBERO-Long—each comprising ten language-conditioned manipulation tasks. We use the modified no_noops RLDS datasets released with OpenVLA (Kim et al., 2024) and jointly train one mixed-suite model with a DINOv3 ViT-B backbone. The model predicts 12-step chunks of continuous 7-DoF actions and is trained for 80k steps with 10k warm-up steps and an effective batch size of 256. Following the VLA-Adapter rollout protocol (Wang et al., 2026b), without introducing any additional techniques, we conduct 50 rollouts per task and report suite-level and average success rates over 2,000 trials.
RoboTwin 2.0 comprises 50 language-conditioned bimanual manipulation tasks requiring coordinated dual-arm control. Given our available compute budget, we restrict training to the official clean demonstrations and do not include randomized-scene data. We jointly train one multi-task model with a DINOv3 ViT-L backbone to predict 50-step chunks of 14-dimensional absolute joint-position actions. Training lasts 55k steps with 1k warm-up steps and an effective batch size of 192. Following the StarVLA (StarVLA Community, 2026) training and evaluation framework, without introducing any additional techniques, we conduct 100 clean-setting rollouts per task and report the average success rate across all 50 tasks.
Real-world evaluation. We conducted real-world experiments using an AgileX Piper platform illustrated in Fig. 4. We consider four representative language-conditioned manipulation tasks: grab roller, move playing card away, press stapler, and stack three bowls. These tasks require accurate object grounding, viewpoint robustness, and stable closed-loop execution under real sensory noise. We initialize the policy from the TurboVLA checkpoint pretrained on LIBERO and fine-tune it on teleoperated real-world demonstrations for 12.5k steps. Each task is evaluated over 40 trials, and we report the success rate. We compare against under the same platform, training data, and evaluation protocol.
Metrics and comparisons. We use task success rate as the primary metric across all benchmarks. We also report total parameter count, inference latency, and inference VRAM. For all other runnable methods included in the comparison, these efficiency metrics are measured using official architectures, implementations, and checkpoints on an RTX 4090 with batch size one. Latency is measured from multimodal input to producing an action chunk or an equivalent number of autoregressive action tokens, while inference VRAM denotes the peak GPU memory usage of the complete online policy.
5.3 Main Results
Tab. 1 and Tab. 2 present complementary evaluations of TurboVLA on simulation benchmarks. From these results, we draw the following observations.
| Method | Emb. PT. | Deployment Efficiency | LIBERO Success Rate (%) | ||||||
| Params (B) | VRAM (GB) | Latency (ms) | Spa. | Obj. | Goal | Long | Avg. | ||
| Non-VLA policy baseline | |||||||||
| Diffusion Policy (Chi et al., 2023) (RSS’23) | ✗ | 0.3 | 1.1 | 924.8 | 78.3 | 92.5 | 68.3 | 50.5 | 72.4 |
| Capability-oriented VLAs | |||||||||
| OpenVLA (Kim et al., 2024) (CoRL’24) | ✓ | 7.5 | 14.9 | 202.9 | 84.7 | 88.4 | 79.2 | 53.7 | 76.5 |
| (Black et al., 2025a) (RSS’25) | ✓ | 3.2 | 12.3 | 84.2 | 96.8 | 98.8 | 95.8 | 85.2 | 94.2 |
| UniVLA (Bu et al., 2025) (RSS’25) | ✓ | 7.6 | 15.0 | 173.8 | 96.5 | 96.8 | 95.6 | 92.0 | 95.2 |
| (Physical Intelligence et al., 2025) (CoRL’25) | ✓ | 3.4 | 12.8 | 93.6 | 98.8 | 98.2 | 98.0 | 92.4 | 96.9 |
| CogVLA (Li et al., 2025) (NeurIPS’25) | ✓ | 8.3 | 16.1 | 115.5 | 98.6 | 98.8 | 96.6 | 95.4 | 97.4 |
| Mantis (Yang et al., 2026) (CVPR’26) | ✓ | 4.9 | 7.9 | 198.7 | 98.8 | 99.2 | 94.4 | 94.2 | 96.7 |
| MM-ACT (Liang et al., 2026b) (CVPR’26) | ✗ | 8.2 | 16.3 | 723.2 | 97.8 | 99.4 | 94.8 | 93.0 | 96.3 |
| VLA-JEPA (Sun et al., 2026) (ECCV’26) | ✓ | 2.8 | 5.3 | 108.7 | 96.2 | 99.6 | 97.2 | 95.8 | 97.2 |
| VEGA-3D (Wu et al., 2026) (ECCV’26) | ✓ | 9.0 | 16.0 | 546.4 | 97.4 | 99.4 | 97.0 | 95.2 | 97.3 |
| Acceleration-oriented VLAs | |||||||||
| OpenVLA-OFT (Kim et al., 2025) (RSS’25) | ✓ | 7.7 | 15.7 | 112.2 | 97.6 | 98.4 | 97.9 | 94.5 | 97.1 |
| DDVLA (Liang et al., 2026c) (ICML’26) | ✓ | 7.5 | 14.5 | 60.8 | 97.2 | 99.4 | 96.8 | 92.2 | 96.4 |
| Lightweight VLAs | |||||||||
| SmolVLA (Shukor et al., 2025) (ArXiv’25) | ✗ | 2.3 | 7.1 | 203.1 | 93.0 | 94.0 | 91.0 | 77.0 | 88.8 |
| DreamVLA (Zhang et al., 2025c) (NeurIPS’25) | ✗ | 0.7 | 1.5 | 128.0 | 97.5 | 94.0 | 89.5 | 89.5 | 92.6 |
| VLA-Adapter (Wang et al., 2026b) (AAAI’26) | ✗ | 1.5 | 4.3 | 87.3 | 97.8 | 99.2 | 97.2 | 95.0 | 97.3 |
| Evo-1 (Lin et al., 2026b) (CVPR’26) | ✗ | 0.8 | 1.7 | 137.2 | 92.7 | 97.7 | 96.3 | 92.3 | 94.8 |
| TurboVLA (Ours) | ✗ | 0.2 | 0.9 | 31.2 | 99.2 | 99.8 | 97.4 | 94.2 | 97.7 |
| Method | Emb. PT. | Params (B) | Lat. (ms) | Avg. Success (%) |
|---|---|---|---|---|
| Per-task training | ||||
| Diffusion Policy (Chi et al., 2023) (RSS’23) | ✗ | 0.1 | 794.1 | 28.0 |
| ACT (Zhao et al., 2023) (RSS’23) | ✗ | 0.1 | 20.4 | 29.7 |
| DP3 (Ze et al., 2024) (RSS’24) | ✗ | 0.3 | 78.4 | 55.2 |
| (Black et al., 2025a) (RSS’25) | ✓ | 3.2 | 87.6 | 46.4 |
| FlowPolicy (Zhang et al., 2025b) (AAAI’25) | ✗ | 0.3 | – | 41.0 |
| RDT (Liu et al., 2025) (ICLR’25) | ✓ | 1.7 | 204.8 | 34.5 |
| SeedPolicy (Gui et al., 2026) (ArXiv’26) | ✗ | 0.2 | 823.9 | 42.8 |
| Multi-task training | ||||
| UP-VLA (Zhang et al., 2025a) (ICML’25) | ✓ | 1.6 | 74.3 | 52.9 |
| (Physical Intelligence et al., 2025) (CoRL’25) | ✓ | 3.4 | 95.6 | 57.0 |
| StarVLA- (Ye et al., 2026) (ECCV’26) | ✗ | 3.8 | 74.9 | 50.3 |
| TurboVLA (Ours) | ✗ | 0.4 | 43.4 | 60.2 |
1) Moving beyond an LLM-centered execution pathway improves the performance–efficiency frontier. As summarized in Tab. 1, TurboVLA matches the manipulation capability of large Capability-oriented VLAs at a substantially lower cost. It achieves 97.7% average success, compared with 96.9% for (Physical Intelligence et al., 2025) while using only about 6% of its parameters and significantly reducing inference latency from 93.6 ms to 31.2 ms. Our method also outperforms the recent VLA-JEPA (Sun et al., 2026) in average success while being over faster and using only about 7% of its parameters. This comparison indicates that strong execution-level manipulation is not inherently tied to using a multi-billion-parameter LLM as the central interface between perception and action. The advantage remains clear over Acceleration-oriented VLAs: OpenVLA-OFT (Kim et al., 2025) and Discrete Diffusion VLA (Liang et al., 2026c) optimize action generation and achieve inference latencies of 112.2 ms and 60.8 ms respectively, yet both remain slower and yield lower average success than our method as their large language backbones are still retained in the center of execution. Compared with Lightweight VLAs, TurboVLA further improves both sides of the trade-off. It outperforms recent Evo-1 (Lin et al., 2026b) and VLA-Adapter (Wang et al., 2026b) in average success while being substantially smaller and faster. This performance–efficiency advantage also extends to the RoboTwin 2.0 benchmark. As shown in Tab. 2, TurboVLA achieves 60.2% average success across 50 bimanual tasks with 43.4 ms inference latency, outperforming both at 57.0% and 95.6 ms and StarVLA- (Ye et al., 2026) at 50.3% and 74.9 ms.
These results show that neither accelerating action generation nor reducing model scale alone is sufficient. By redesigning the multimodal execution pathway, TurboVLA validates the simple and direct paradigm as a more effective way to jointly achieve strong manipulation performance, low latency, and compact model scale across both single-arm and bimanual control settings.
2) Architectural efficiency translates into practical deployability. Practical robot deployment is jointly constrained by policy accuracy, response latency, and resident memory, rather than by any single efficiency metric. As summarized in Tab. 1, most high-performing VLA policies operate in the multi-billion-parameter regime and require several gigabytes of inference VRAM, while their inference latency is generally substantially higher than that of TurboVLA. Such resource requirements can restrict deployment to platforms with high-memory GPUs or require additional compression and system-level optimization. In contrast, the complete TurboVLA policy combines 97.7% average success with 31.2 ms action-chunk inference and only 0.9 GB of inference VRAM. This favorable efficiency profile also translates well to real robotic deployment. As shown in Fig. 4, TurboVLA achieves 92.5%, 80%, 90%, and 87.5% success on four real-world AgileX Piper tasks, consistently outperforming . These results show that the proposed direct pathway is sufficient and effective in real-world execution-level manipulation.
5.4 Ablation Study
We conduct ablations on LIBERO to study four questions: whether semantic language conditioning is necessary, how the instruction should be encoded, which vision-language interaction design is most effective, and how sensitive the method is to the interaction depth and action horizon .
Semantic language conditioning and instruction encoding. We first study the role of language itself. Tab. 5 shows that removing language reduces the average success rate from 97.7% to 70.8%, with the largest drop on LIBERO-Goal (97.4% 11.6%). This confirms that the policy cannot rely on visual priors alone when multiple behaviors are compatible with the same scene. Replacing semantic instructions with a learned task-ID embedding recovers part of the performance, but still remains 2.3% below the full model, indicating that natural-language instructions provide more than closed-set task identity. Then, we examine whether the proposed architecture depends on a specific text backbone. As shown in Tab. 5, T5-small (Raffel et al., 2020) achieves a competitive 97.1% average success rate, while the SigLIP (Zhai et al., 2023) text encoder reaches 95.5%, suggesting that execution-level instructions can be effectively handled by lightweight text encoders without a large generative language model, and that the proposed architecture is not tied to a particular text representation.
| Condition | Spa. | Obj. | Goal | Long | Avg. |
|---|---|---|---|---|---|
| w/o Language | 87.0 | 99.4 | 11.6 | 85.0 | 70.8 |
| Task-ID Embedding | 95.6 | 98.6 | 95.8 | 91.6 | 95.4 |
| \rowcolor [gray]0.92 Semantic Instruction | 99.2 | 99.8 | 97.4 | 94.2 | 97.7 |
| Text Encoder | Overall Params (M) | Spa. | Obj. | Goal | Long | Avg. |
|---|---|---|---|---|---|---|
| SigLIP-Base | 216.9 | 98.6 | 99.6 | 94.8 | 89.0 | 95.5 |
| T5-Small | 141.9 | 98.8 | 99.8 | 96.8 | 92.8 | 97.1 |
| \rowcolor [gray]0.92 BERT | 216.1 | 99.2 | 99.8 | 97.4 | 94.2 | 97.7 |
| Interaction Design | Spa. | Obj. | Goal | Long | Avg. |
|---|---|---|---|---|---|
| w/o Interaction | 97.4 | 99.8 | 90.8 | 92.8 | 95.2 |
| Language Queries Visual | 98.4 | 99.4 | 94.2 | 92.4 | 96.1 |
| Visual Queries Language | 98.6 | 100.0 | 94.4 | 93.0 | 96.5 |
| \rowcolor [gray]0.92 Bidirectional Interaction | 99.2 | 99.8 | 97.4 | 94.2 | 97.7 |
| Overall Params (M) | Spa. | Obj. | Goal | Long | Avg. | |
|---|---|---|---|---|---|---|
| 2 | 206.6 | 96.6 | 99.6 | 88.4 | 89.4 | 93.5 |
| 4 | 211.3 | 98.0 | 99.4 | 93.2 | 92.2 | 95.7 |
| \rowcolor [gray]0.92 6 | 216.1 | 99.2 | 99.8 | 97.4 | 94.2 | 97.7 |
| 8 | 220.8 | 98.2 | 99.6 | 95.8 | 92.8 | 96.6 |

Vision-language interaction design. Having established the importance of semantic instruction features, we next study how visual and language features should interact before action decoding. As illustrated in Fig. 5, we compare no interaction, two asymmetric cross-attention variants, and the proposed bidirectional interaction, while keeping all other architecture and training settings unchanged. As shown in Tab. 5, direct concatenation achieves 95.2% average success, while the two one-way cross-attention variants improve it to 96.1% and 96.5%. Bidirectional interaction performs best at 97.7%, indicating that scene-aware instruction features and instruction-conditioned visual features provide complementary information for action prediction.
Interaction depth and action horizon. Finally, we explore two practical hyperparameters of the policy. Tab. 5 shows that increasing the number of interaction layers from to steadily improves the average success rate from 93.5% to 97.7%, while a deeper model with slightly degrades to 96.6%. We therefore use as a good balance between capacity and efficiency. We also vary the action horizon while keeping the rest of the architecture unchanged. As shown in Fig. 6, performance improves from 96.4% at to 97.7% at , then drops to 95.6% at . This suggests that too short a horizon limits temporal expressiveness, while too long a horizon makes chunk prediction more difficult. We therefore use in all main experiments.
Overall, these ablations show that TurboVLA achieves efficiency without discarding semantic language information or explicit cross-modal modeling. Its performance is enabled by lightweight instruction encoding together with sufficiently bidirectional vision-language interaction, supporting the proposed direct execution pathway as an effective alternative to an LLM-centered VLA architecture.
6 Conclusion
In this paper, we propose TurboVLA, a simple yet efficient paradigm that moves beyond the conventional LLM-centered execution pathway for vision-language-action learning. By combining lightweight instruction encoding, compact visual representations, bidirectional vision-language interaction, and action-chunk decoding, TurboVLA preserves task-conditioned manipulation capability while significantly reducing model size, inference latency, and memory consumption. Our results suggest that execution-level control does not necessarily require a general-purpose LLM as the central interface between perception and action, and we hope this architecture provides a new insight for the community to further examine the role of large language models in VLA systems. Nevertheless, TurboVLA is designed primarily for concrete execution-level instructions and may not provide the complex semantic understanding and reasoning required for high-level task planning. Future work will explore combining the high-level planning capability of LLMs with the efficient execution pathway of TurboVLA to build hierarchical systems that are both intelligent and efficient.
References
- S. Bai, J. Lyu, W. Zhou, Z. Li, D. Wang, L. Xing, X. Zhao, P. Wang, Z. Wang, C. Chi, et al. (2026) Latent reasoning vla: latent thinking and prediction for vision-language-action models. In Proc. of Intl. Conf. on Machine Learning, Cited by: §2.
- J. Bjorck, F. Castañeda, N. Cherniadev, X. Da, R. Ding, L. Fan, Y. Fang, D. Fox, F. Hu, S. Huang, et al. (2025) Gr00t n1: an open foundation model for generalist humanoid robots. arXiv preprint arXiv:2503.14734. Cited by: §2.
- K. Black, N. Brown, D. Driess, A. Esmail, M. Equi, C. Finn, N. Fusai, L. Groom, K. Hausman, B. Ichter, et al. (2025a) : a vision-language-action flow model for general robot control. In Proc. of Robotics: Science and Systems, Cited by: §1, §1, §2, §2, §3, §3, Table 1, Table 2.
- K. Black, M. Galliker, and S. Levine (2025b) Real-time execution of action chunking flow policies. In Proc. of Advances in Neural Information Processing Systems, Vol. 38, pp. 33383–33407. Cited by: §2.
- A. Brohan, N. Brown, J. Carbajal, Y. Chebotar, J. Dabis, C. Finn, K. Gopalakrishnan, K. Hausman, A. Herzog, J. Hsu, et al. (2023) Rt-1: robotics transformer for real-world control at scale. In Proc. of Robotics: Science and Systems, Cited by: §1, §2.
- Q. Bu, Y. Yang, J. Cai, S. Gao, G. Ren, M. Yao, P. Luo, and H. Li (2025) Univla: learning to act anywhere with task-centric latent actions. In Proc. of Robotics: Science and Systems, Cited by: §2, Table 1.
- S. Chen, P. Pacaud, and C. Schmid (2026a) Pointact: vision-language-action models with multi-scale point-action interaction. In Proc. of Robotics: Science and Systems, Cited by: §2.
- T. Chen, Z. Chen, B. Chen, Z. Cai, Y. Liu, Z. Li, Q. Liang, X. Lin, Y. Ge, Z. Gu, et al. (2026b) Robotwin 2.0: a scalable data generator and benchmark with strong domain randomization for robust bimanual robotic manipulation. In Proc. of Intl. Conf. on Machine Learning, Cited by: §5.2, §5.
- Y. Chen, Y. Han, Y. Huang, and X. Li (2026c) Rlrc: reinforcement learning-based recovery for compressed vision-language-action models. IEEE Robotics and Automation Letters. Cited by: §2.
- C. Chi, Z. Xu, S. Feng, E. Cousineau, Y. Du, B. Burchfiel, R. Tedrake, and S. Song (2023) Diffusion policy: visuomotor policy learning via action diffusion. In Proc. of Robotics: Science and Systems, Cited by: Table 1, Table 2.
- J. Devlin, M. Chang, K. Lee, and K. Toutanova (2019) Bert: pre-training of deep bidirectional transformers for language understanding. In Proceedings of the 2019 conference of the North American chapter of the association for computational linguistics: human language technologies, volume 1 (long and short papers), pp. 4171–4186. Cited by: §1, §4.1, §5.1.
- D. Driess, F. Xia, M. S. Sajjadi, C. Lynch, A. Chowdhery, B. Ichter, A. Wahid, J. Tompson, Q. Vuong, T. Yu, et al. (2023) Palm-e: an embodied multimodal language model. In Proc. of Intl. Conf. on Machine Learning, Cited by: §1.
- H. Fang, S. Li, S. Wang, X. Xi, D. Liang, and X. Bai (2026) Towards generalizable robotic manipulation in dynamic environments. In Proc. of European Conference on Computer Vision, Cited by: §2.
- H. Fu, D. Zhang, Z. Zhao, J. Cui, D. Liang, C. Zhang, D. Zhang, H. Xie, B. Wang, and X. Bai (2025) Orion: a holistic end-to-end autonomous driving framework by vision-language instructed action generation. In Proc. of IEEE Intl. Conf. on Computer Vision, pp. 24823–24834. Cited by: §1, §3.
- Y. Gui, Y. Zhou, S. Cheng, X. Yuan, H. Fan, P. Cheng, and S. Liu (2026) SeedPolicy: horizon scaling via self-evolving diffusion policy for robot manipulation. arXiv preprint arXiv:2603.05117. Cited by: Table 2.
- E. Jang, A. Irpan, M. Khansari, D. Kappler, F. Ebert, C. Lynch, S. Levine, and C. Finn (2022) Bc-z: zero-shot task generalization with robotic imitation learning. In Proc. of the Conference on Robot Learning, pp. 991–1002. Cited by: §1, §2.
- B. Jeon, Y. Choi, and T. Kim (2026) Shallow-: knowledge distillation for flow-based vlas. In Proc. of the IEEE Int. Conf. on Intelligent Robots and Systems, Cited by: §2.
- T. Jiang, X. Jiang, Y. Ma, X. Wen, B. Li, K. Zhan, P. Jia, Y. Liu, S. Sun, and X. Lang (2025) The better you learn, the smarter you prune: towards efficient vision-language-action models via differentiable token pruning. arXiv preprint arXiv:2509.12594. Cited by: §2.
- Y. Jiang, A. Gupta, Z. Zhang, G. Wang, Y. Dou, Y. Chen, L. Fei-Fei, A. Anandkumar, Y. Zhu, and L. Fan (2023) VIMA: general robot manipulation with multimodal prompts. In Proc. of Intl. Conf. on Machine Learning, Cited by: §2.
- M. J. Kim, C. Finn, and P. Liang (2025) Fine-tuning vision-language-action models: optimizing speed and success. In Proc. of Robotics: Science and Systems, Cited by: §1, §2, §3, §5.3, Table 1.
- M. J. Kim, K. Pertsch, S. Karamcheti, T. Xiao, A. Balakrishna, S. Nair, R. Rafailov, E. Foster, G. Lam, P. Sanketi, et al. (2024) Openvla: an open-source vision-language-action model. In Proc. of the Conference on Robot Learning, Cited by: §1, §1, §2, §3, §3, §5.2, Table 1.
- Q. Li, Y. Liang, Z. Wang, L. Luo, X. Chen, M. Liao, F. Wei, Y. Deng, S. Xu, Y. Zhang, et al. (2024) Cogact: a foundational vision-language-action model for synergizing cognition and action in robotic manipulation. arXiv preprint arXiv:2411.19650. Cited by: §1, §1, §2, §3.
- W. Li, R. Zhang, R. Shao, J. He, and L. Nie (2025) CogVLA: cognition-aligned vision-language-action models via instruction-driven routing & sparsification. In Proc. of Advances in Neural Information Processing Systems, Vol. 38, pp. 137646–137675. Cited by: Table 1.
- D. Liang, C. Zhang, X. Xu, J. Ju, Z. Luo, and X. Bai (2026a) Cook and clean together: teaching embodied agents for parallel task execution. In Proceedings of the AAAI Conference on Artificial Intelligence, Vol. 40, pp. 18415–18424. Cited by: §2.
- H. Liang, X. Chen, B. Wang, M. Chen, Y. Liu, Y. Zhang, Z. Chen, T. Yang, Y. Chen, J. Pang, et al. (2026b) Mm-act: learn from multimodal parallel generation to act. In Proc. of IEEE Intl. Conf. on Computer Vision and Pattern Recognition, pp. 35080–35090. Cited by: Table 1.
- Z. Liang, Y. Li, T. Yang, C. Wu, S. Mao, L. Pei, T. Nian, S. Zhou, X. Yang, J. Pang, et al. (2026c) Discrete diffusion vla: bringing discrete diffusion to action decoding in vision-language-action policies. In Proc. of Intl. Conf. on Machine Learning, Cited by: §2, §5.3, Table 1.
- H. Lin, H. Yu, J. Huang, H. Zhang, Y. Ling, P. Tan, X. Xue, and Y. Fu (2026a) PoseVLA: universal pose pretraining for generalizable vision-language-action policies. In Proc. of Robotics: Science and Systems, Cited by: §2.
- T. Lin, Y. Zhong, Y. Du, J. Zhang, J. Liu, Y. Chen, E. Gu, Z. Liu, H. Cai, Y. Zou, et al. (2026b) Evo-1: lightweight vision-language-action model with preserved semantic alignment. In Proc. of IEEE Intl. Conf. on Computer Vision and Pattern Recognition, pp. 13397–13406. Cited by: §2, §5.3, Table 1.
- B. Liu, Y. Zhu, C. Gao, Y. Feng, Q. Liu, Y. Zhu, and P. Stone (2023) Libero: benchmarking knowledge transfer for lifelong robot learning. In Proc. of Advances in Neural Information Processing Systems, Vol. 36, pp. 44776–44791. Cited by: §1, §5.2, §5.
- C. Liu, X. Han, J. Gao, Y. Zhao, H. Chen, and Y. Du (2026) OAT: ordered action tokenization. In Proc. of Robotics: Science and Systems, Cited by: §2.
- J. Liu, M. Liu, Z. Wang, P. An, X. Li, K. Zhou, S. Yang, R. Zhang, Y. Guo, and S. Zhang (2024a) Robomamba: efficient vision-language-action model for robotic reasoning and manipulation. In Proc. of Advances in Neural Information Processing Systems, Vol. 37, pp. 40085–40110. Cited by: §2.
- S. Liu, Z. Zeng, T. Ren, F. Li, H. Zhang, J. Yang, Q. Jiang, C. Li, J. Yang, H. Su, et al. (2024b) Grounding dino: marrying dino with grounded pre-training for open-set object detection. In Proc. of European Conference on Computer Vision, pp. 38–55. Cited by: §1, §3, §5.1.
- S. Liu, L. Wu, B. Li, H. Tan, H. Chen, Z. Wang, K. Xu, H. Su, and J. Zhu (2025) Rdt-1b: a diffusion foundation model for bimanual manipulation. In Proc. of Intl. Conf. on Learning Representations, Cited by: §1, §2, §2, Table 2.
- Y. Lu, Z. Liu, X. Fan, Z. Yang, J. Hou, J. Li, K. Ding, and H. Zhao (2026) Faster: rethinking real-time flow vlas. arXiv preprint arXiv:2603.19199. Cited by: §2.
- C. Lynch and P. Sermanet (2020) Language conditioned imitation learning over unstructured data. In Proc. of Robotics: Science and Systems, Cited by: §1, §2.
- O. Mees, L. Hermann, and W. Burgard (2022a) What matters in language conditioned robotic imitation learning over unstructured data. IEEE Robotics and Automation Letters 7 (4), pp. 11205–11212. Cited by: §2.
- O. Mees, L. Hermann, E. Rosete-Beas, and W. Burgard (2022b) Calvin: a benchmark for language-conditioned policy learning for long-horizon robot manipulation tasks. IEEE Robotics and Automation Letters 7 (3), pp. 7327–7334. Cited by: §1, §2.
- J. Niu, K. Gu, Y. Zhao, S. Liang, T. Wang, X. Hu, Y. Wang, and H. Li (2026) Realtime-vla flash: speculative inference framework for diffusion-based vlas. arXiv preprint arXiv:2605.13778. Cited by: §2.
- A. O’Neill, A. Rehman, A. Maddukuri, A. Gupta, A. Padalkar, A. Lee, A. Pooley, A. Gupta, A. Mandlekar, A. Jain, et al. (2024) Open x-embodiment: robotic learning datasets and rt-x models. In Proc. of the IEEE Int. Conf. on Robotics and Automation, pp. 6892–6903. Cited by: §2.
- Octo Model Team, D. Ghosh, H. Walke, K. Pertsch, K. Black, O. Mees, S. Dasari, J. Hejna, T. Kreiman, C. Xu, et al. (2024) Octo: an open-source generalist robot policy. In Proc. of Robotics: Science and Systems, Cited by: §1, §2.
- K. Pertsch, K. Stachowicz, B. Ichter, D. Driess, S. Nair, Q. Vuong, O. Mees, C. Finn, and S. Levine (2025) Fast: efficient action tokenization for vision-language-action models. In Proc. of Robotics: Science and Systems, Cited by: §2.
- Physical Intelligence, K. Black, N. Brown, J. Darpinian, K. Dhabalia, D. Driess, A. Esmail, M. Equi, C. Finn, N. Fusai, et al. (2025) : a vision-language-action model with open-world generalization. In Proc. of the Conference on Robot Learning, Cited by: §1, §1, §1, §2, §2, §3, §3, §5.3, Table 1, Table 2.
- C. Raffel, N. Shazeer, A. Roberts, K. Lee, S. Narang, M. Matena, Y. Zhou, W. Li, and P. J. Liu (2020) Exploring the limits of transfer learning with a unified text-to-text transformer. Journal of Machine Learning Research 21 (140), pp. 1–67. Cited by: §5.4.
- M. Shridhar, L. Manuelli, and D. Fox (2022) Cliport: what and where pathways for robotic manipulation. In Proc. of the Conference on Robot Learning, pp. 894–906. Cited by: §1, §2.
- M. Shridhar, L. Manuelli, and D. Fox (2023) Perceiver-actor: a multi-task transformer for robotic manipulation. In Proc. of the Conference on Robot Learning, pp. 785–799. Cited by: §2.
- M. Shukor, D. Aubakirova, F. Capuano, P. Kooijmans, S. Palma, A. Zouitine, M. Aractingi, C. Pascal, M. Russi, A. Marafioti, et al. (2025) Smolvla: a vision-language-action model for affordable and efficient robotics. arXiv preprint arXiv:2506.01844. Cited by: §1, §2, Table 1.
- O. Siméoni, H. V. Vo, M. Seitzer, F. Baldassarre, M. Oquab, C. Jose, V. Khalidov, M. Szafraniec, S. Yi, M. Ramamonjisoa, et al. (2025) Dinov3. arXiv preprint arXiv:2508.10104. Cited by: §5.1.
- StarVLA Community (2026) StarVLA: a lego-like codebase for vision-language-action model developing. arXiv preprint arXiv:2604.05014. Cited by: §5.2.
- S. Stepputtis, J. Campbell, M. Phielipp, S. Lee, C. Baral, and H. Ben Amor (2020) Language-conditioned imitation learning for robot manipulation tasks. In Proc. of Advances in Neural Information Processing Systems, Vol. 33, pp. 13139–13150. Cited by: §2.
- J. Sun, W. Zhang, Z. Qi, S. Ren, Z. Liu, H. Zhu, G. Sun, X. Jin, and Z. Chen (2026) Vla-jepa: enhancing vision-language-action model with latent world model. In Proc. of European Conference on Computer Vision, Cited by: §5.3, Table 1.
- H. Wang, J. Xu, Y. Xiang, J. Pan, Y. Zhou, Y. Li, and G. Dai (2026a) Specprune-vla: accelerating vision-language-action models via action-aware self-speculative pruning. In Proc. of Intl. Conf. on Machine Learning, Cited by: §2.
- H. Wang, C. Xiong, R. Wang, and X. Chen (2025) Bitvla: 1-bit vision-language-action models for robotics manipulation. arXiv preprint arXiv:2506.07530. Cited by: §2.
- Y. Wang, P. Ding, L. Li, C. Cui, Z. Ge, X. Tong, W. Song, H. Zhao, W. Zhao, P. Hou, et al. (2026b) Vla-adapter: an effective paradigm for tiny-scale vision-language-action model. In Proc. of the AAAI Conf. on Artificial Intelligence, pp. 18638–18646. Cited by: §5.2, §5.3, Table 1.
- Y. Wang, X. Li, W. Wang, J. Zhang, Y. Li, Y. Chen, X. Wang, and Z. Zhang (2026c) Unified vision-language-action model. In Proc. of Intl. Conf. on Learning Representations, Cited by: §2.
- J. Wen, Y. Zhu, J. Li, M. Zhu, Z. Tang, K. Wu, Z. Xu, N. Liu, R. Cheng, C. Shen, et al. (2025) Tinyvla: towards fast, data-efficient vision-language-action models for robotic manipulation. IEEE Robotics and Automation Letters. Cited by: §2.
- X. Wu, D. Liang, T. Feng, K. Xia, Y. Zhang, X. Li, X. Tan, and X. Bai (2026) Generation models know space: unleashing implicit 3d priors for scene understanding. In Proc. of European Conference on Computer Vision, Cited by: Table 1.
- S. Xu, Y. Wang, C. Xia, D. Zhu, T. Huang, and C. Xu (2025) Vla-cache: efficient vision-language-action manipulation via adaptive token caching. In Proc. of Advances in Neural Information Processing Systems, Vol. 38, pp. 164448–164473. Cited by: §2.
- Y. Xu, Y. Yang, Z. Fan, Y. Liu, Y. Li, B. Li, and Z. Zhang (2026) QVLA: not all channels are equal in vision-language-action model’s quantization. In Proc. of Intl. Conf. on Learning Representations, Cited by: §2.
- Y. Yang, Y. Wang, Z. Wen, L. Zhongwei, C. Zou, Z. Zhang, C. Wen, and L. Zhang (2025) Efficientvla: training-free acceleration and compression for vision-language-action models. In Proc. of Advances in Neural Information Processing Systems, Vol. 38, pp. 40891–40914. Cited by: §2.
- Y. Yang, X. Li, Y. Chen, J. Song, Y. Wang, Z. Xiao, J. Su, Y. Qiaoben, P. Liu, and Z. Deng (2026) Mantis: a versatile vision-language-action model with disentangled visual foresight. In Proc. of IEEE Intl. Conf. on Computer Vision and Pattern Recognition, pp. 42505–42515. Cited by: §2, Table 1.
- J. Ye, N. Gao, S. Yang, J. Zheng, Z. Wang, Y. Chen, P. Chen, Y. Chen, S. Liu, and J. Jia (2026) StarVLA-: reducing complexity in vision-language-action systems. In Proc. of European Conference on Computer Vision, Cited by: §5.3, Table 2.
- Y. Ze, G. Zhang, K. Zhang, C. Hu, M. Wang, and H. Xu (2024) 3d diffusion policy: generalizable visuomotor policy learning via simple 3d representations. In Proc. of Robotics: Science and Systems, Cited by: Table 2.
- X. Zhai, B. Mustafa, A. Kolesnikov, and L. Beyer (2023) Sigmoid loss for language image pre-training. In Proc. of IEEE Intl. Conf. on Computer Vision, pp. 11975–11986. Cited by: §5.4.
- J. Zhang, Y. Guo, Y. Hu, X. Chen, X. Zhu, and J. Chen (2025a) Up-vla: a unified understanding and prediction model for embodied agent. In Proc. of Intl. Conf. on Machine Learning, Cited by: Table 2.
- Q. Zhang, Z. Liu, H. Fan, G. Liu, B. Zeng, and S. Liu (2025b) Flowpolicy: enabling fast and robust 3d flow-based policy via consistency flow matching for robot manipulation. In Proc. of the AAAI Conf. on Artificial Intelligence, Vol. 39, pp. 14754–14762. Cited by: Table 2.
- R. Zhang, M. Dong, Y. Zhang, L. Heng, X. Chi, G. Dai, L. Du, D. Wang, Y. Du, and S. Zhang (2026) Mole-vla: dynamic layer-skipping vision language action model via mixture-of-layers for efficient robot manipulation. In Proc. of the AAAI Conf. on Artificial Intelligence, Vol. 40, pp. 18764–18772. Cited by: §2.
- W. Zhang, H. Liu, Z. Qi, Y. Wang, X. Yu, J. Zhang, R. Dong, J. He, H. Wang, Z. Zhang, et al. (2025c) Dreamvla: a vision-language-action model dreamed with comprehensive world knowledge. In Proc. of Advances in Neural Information Processing Systems, Vol. 38, pp. 24195–24228. Cited by: §2, Table 1.
- T. Z. Zhao, V. Kumar, S. Levine, and C. Finn (2023) Learning fine-grained bimanual manipulation with low-cost hardware. In Proc. of Robotics: Science and Systems, Cited by: §1, §4.3, §5.1, Table 2.
- X. Zhou, D. Liang, S. Tu, X. Chen, Y. Ding, D. Zhang, F. Tan, H. Zhao, and X. Bai (2025) Hermes: a unified self-driving world model for simultaneous 3d scene understanding and generation. In Proc. of IEEE Intl. Conf. on Computer Vision, pp. 27817–27827. Cited by: §3.
- B. Zitkovich, T. Yu, S. Xu, P. Xu, T. Xiao, F. Xia, J. Wu, P. Wohlhart, S. Welker, A. Wahid, et al. (2023) Rt-2: vision-language-action models transfer web knowledge to robotic control. In Proc. of the Conference on Robot Learning, pp. 2165–2183. Cited by: §1, §1, §2, §3.