Research
ACoT-VLA: Action Chain-of-Thought for Vision-Language-Action Models
ACoT-VLA: Action Chain-of-Thought for Vision-Language-Action Models Overview Research area: Robotics — Vision-Language-Action (VLA) models for generalist robot manipulation policies, specifically inte
- arXiv
- 2601.11404
- Published
- 2026-01-16
- Authors
- Linqing Zhong, Yi Liu, Yifei Wei, Ziyu Xiong, Maoqing Yao, Si Liu, Guanghui Ren
AI summary
ACoT-VLA: Action Chain-of-Thought for Vision-Language-Action ModelsOverview
Research area: Robotics — Vision-Language-Action (VLA) models for generalist robot manipulation policies, specifically intermediate reasoning / chain-of-thought mechanisms.
Technical level: Advanced. The paper assumes familiarity with VLA architectures, vision-language model (VLM) backbones, diffusion and flow-matching action heads, cross-attention, and key-value caches.
Scope: The paper proposes and evaluates Action Chain-of-Thought (ACoT), a paradigm in which a robot policy reasons directly in action space — via an Explicit Action Reasoner (EAR) and an Implicit Action Reasoner (IAR) — rather than through language or image intermediaries, and validates it on LIBERO, LIBERO-Plus, VLABench, and real-world robot platforms.
What This Paper Is About
Existing VLA models either map multimodal inputs straight to actions, or insert an intermediate reasoning step such as predicting a sub-task in language or synthesizing a goal image. The authors argue that these intermediaries are "indirect" and carry insufficiently granular information for precise low-level motor execution, because the VLM backbone is pre-trained on web-scale semantic tasks rather than physical dynamics.
The paper's goal is to close this "semantic-kinematic gap" by redefining the reasoning step itself: instead of thinking in tokens or pixels, the policy deliberates as a structured chain of coarse, kinematically grounded action intents that condition the final action head.
Key Contributions
-
A new reasoning paradigm — Action Chain-of-Thought (ACoT). The authors state this is the first work to formulate the deliberative process as a structured chain of explicit action-space intents, rather than as abstract linguistic or visual sub-goals.
-
Two complementary action reasoners. The Explicit Action Reasoner (EAR) is a lightweight transformer that synthesizes coarse reference trajectories as explicit, executable action-space guidance. The Implicit Action Reasoner (IAR) uses cross-attention with learnable queries over the VLM's key-value cache to extract latent action priors (for example, visual affordances and action-related semantics).
-
ACoT-VLA, a unified framework. The two guidances are fused by an Action-Guided Prediction (AGP) head, which treats the noisy action segment as a query that cross-attends to both the explicit and implicit features, fuses them with self-attention, and feeds the result to the action head.
-
Empirical validation across simulation and real robots. The method is evaluated on LIBERO, LIBERO-Plus, and VLABench, plus real-world deployment on the AgiBot G1 and AgileX platforms, with reported state-of-the-art results on multiple benchmarks.
Main Findings
-
LIBERO: ACoT-VLA achieves the best average success rate of 98.5% (both with a frozen LLM backbone and with full training), compared with 96.9% for the π0.5 baseline — a 1.6% absolute improvement in average. Per-suite results for the frozen-backbone variant are Spatial 99.4, Object 99.6, Goal 98.8, Long 96.0; the fully trained variant scores Spatial 98.6, Object 99.0, Goal 99.4, Long 97.0. The largest reported gain is on the long-horizon LIBERO-Long suite, where π0.5 scores 92.4.
-
LIBERO-Plus under zero-shot transfer: ACoT-VLA reaches an 86.6% average, ahead of π0.5* at 85.7% and the frozen-backbone variant at 83.6%. The paper reports pronounced robustness on robot initial-state perturbations (+3.2%) and language variations (+4.2%) relative to comparison methods.
-
LIBERO-Plus under supervised fine-tuning: ACoT-VLA reaches 88.0% average success, versus 84.1% for its frozen-backbone version, 75.7% for π0.5⋄, and 67.4% for π0⋄.
-
VLABench: ACoT-VLA reports the best average scores of 63.5% Intention Score (IS) and 47.4% Progress Score (PS), versus 60.2% IS / 43.1% PS for π0.5⋄ and 55.0% IS / 44.1% PS for π0⋄. On the unseen-texture track it reports gains of +12.6% IS and +7.2% PS. All models in this comparison were trained for 60K steps.
-
Module ablation (LIBERO): Starting from a π0.5 baseline at 96.9% average, adding EAR alone (#1) raises it to 98.3%, adding IAR alone (#2) raises it to 98.1%, and adding both (#3) yields 98.5% — evidence that the explicit and implicit guidance are complementary.
-
Reference-action configuration ablation: Various combinations of action shift, action horizon, and equivalent horizon consistently outperform the baseline of 96.6%, with results ranging from 97.9% to 98.3%. The authors observe that shorter horizons combined with moderate shifts tend to give relatively stronger gains.
-
KV-cache interaction ablation: All three strategies beat the baseline (96.9%): "Query" 97.0%, "Attention Pooling" 97.3%, and "Downsample" 98.1% — the last being best and suggesting VLM features contain information redundant or noisy for action prediction.
-
Real-world deployment: On the AgiBot G1 across "Wipe Stain," "Pour Water," and "Open-set Pick," ACoT-VLA reaches an average success rate of 66.7%, compared with 61.0% for π0.5 and 33.8% for π0. The authors report that the aligned improvements on AgiBot G1 and AgileX for "Open-set Pick" indicate cross-embodiment adaptability, though per-platform numbers for AgileX are not given in the provided text.
-
Training stabilization: Because the reference-action predictor's outputs can be unstable, the explicit action embedding is computed from ground-truth reference trajectories during training (teacher forcing), then switched to fully self-conditioned generation at inference.
Methodology in Plain English
The starting point is a standard VLA setup: a policy takes a language instruction and a current camera observation and must predict a sequence of future actions. Previous work inserts an extra reasoning step (predict a sub-task, or imagine a goal image) before acting. This paper instead inserts guidance that already lives in action space.
Two things generate that guidance:
-
Explicit Action Reasoner (EAR). A compact transformer takes a noisy action sequence as input and, at every layer, applies self-attention over the action sequence (to capture timing) plus cross-attention into the VLM's stored key-value cache (to inject what the scene and instruction mean). It is trained with flow matching to produce a coarse reference trajectory — a rough "sketch" of the motion. That sketch is projected into an embedding and used as explicit guidance.
-
Implicit Action Reasoner (IAR). Not every useful cue is an observable trajectory; language like "reach out" or "grasp," and affordances visible in the scene, implicitly constrain which actions are plausible. IAR introduces learnable query vectors for each VLM layer, downsamples the VLM's key-value cache into a smaller dimension, and applies cross-attention to pull out action-relevant features. Results are pooled across layers and projected into an implicit guidance feature.
-
Action-Guided Prediction (AGP). The noisy action segment is embedded and used as a query that cross-attends separately to the explicit and implicit guidance features. The two attended results are concatenated and fused with self-attention, then passed to the action head to produce the final denoised action sequence.
Training uses a flow-matching mean-squared-error objective on two terms — one for the reference-action predictor and one for the action head — combined with balance factors λ1 = λ2 = 0.5.
Implementation specifics: the system is built on π0.5, with SigLIP as the visual encoder and a Gemma 2B LLM backbone of N = 18 layers and hidden size d = 2048; frames are resized to 224 × 224. EAR uses 18 transformer layers. IAR uses query matrices with row dimension M = 1 and a reduced dimension of d′ = 128. The reference-action horizon H^ref is 15 with action shift 2, and the policy action horizon H is 10 with action shift 1. Training uses a cosine-decay learning-rate schedule with a 10K-step warm-up and a peak learning rate of 5e-5, AdamW with gradient-norm clipping at 1.0, and EMA with decay 0.999. Training runs on a single node with 8 NVIDIA H100 GPUs in bfloat16; inference runs on a single NVIDIA RTX 4090.
Data: for simulation the authors use only the official benchmark training splits — LIBERO, LIBERO-Plus, and VLABench — with no additional data. Real-world demonstrations were collected on their own robotic platform.
Why This Matters
The paper challenges a prevailing assumption in embodied AI: that reasoning for robots should happen in language or vision. It argues that because the bottleneck is the mismatch between semantic representations and motor commands, guidance expressed directly as motion is more useful. If the reported gains hold, this suggests a general design principle — put the reasoning where the action lives — that could be layered onto existing VLA backbones rather than requiring a full architectural rebuild.
Real-world applications the paper's setting points toward include:
- Contact-rich household or service manipulation, such as wiping surfaces clean, where force and trajectory precision matter more than semantic understanding.
- Fine-grained object handling, exemplified by grasping a kettle by its handle and pouring water without overflow.
- Instruction-following pick-and-place, where the robot must select the correct tabletop object from a natural-language command.
- Robust deployment under distribution shift, since LIBERO-Plus is specifically built around camera, robot-state, language, lighting, background, sensor-noise, and object-layout perturbations — conditions typical of real factories, kitchens, and warehouses.
For industry, the relevance is that the method is implemented on top of an existing open VLA stack (π0.5, SigLIP, Gemma 2B), trains on a single node of 8 H100 GPUs, and runs inference on a single consumer-grade RTX 4090 — a practical profile for teams that cannot train foundation models from scratch. The reported cross-embodiment results on AgiBot G1 and AgileX also speak to reuse across robot hardware.
Future Directions
-
Whether action-space reasoning should replace or augment language/visual reasoning. The paper positions ACoT as an alternative to language and visual CoT, but does not report experiments combining all three; the interaction between them is an open question.
-
Scaling and generality of the reference-action predictor. The ablation shows performance is fairly flat across action shifts and horizons (97.9%–98.3%), which raises the question of how sensitive the mechanism is to much longer horizon tasks or to more dexterous embodiments.
-
Improving the implicit pathway. The KV-cache ablation suggests VLM features contain noise for action prediction, with the best strategy reaching 98.1% versus 98.5% when combined with EAR — leaving room to design better mechanisms for aligning vision-language representations with action.
-
Broader real-world and cross-embodiment validation. The provided text reports an aggregate real-world average of 66.7% and mentions AgileX results without per-task or per-platform numbers; more extensive reporting across tasks, embodiments, and failure modes is a natural next step.
Target Audience
This paper is most useful to robotics and embodied-AI researchers already working with VLA models, diffusion or flow-matching action policies, and VLM backbones — particularly those interested in chain-of-thought and intermediate-reasoning designs for control. It is also relevant to engineers at robotics companies evaluating whether an action-space reasoning module can be added to an existing policy stack without retraining a foundation model, and to graduate students looking for a concrete example of how the perception-action gap is being framed and attacked in current generalist-robot research.
Authors’ abstract
Vision-Language-Action models have emerged as essential generalist robot policies for diverse manipulation tasks, conventionally relying on directly translating multimodal inputs into actions via Vision-Language Model embeddings. Recent advancements have introduced explicit intermediary reasoning-such as sub-task prediction (language) or goal image synthesis (vision)-to guide action generation. However, these intermediate reasoning are often indirect and inherently limited in their capacity to convey the full, granular information required for precise action execution. Instead, we posit that the most effective form of reasoning is one that deliberates directly in the action space. We introduce Action Chain-of-Thought (ACoT), a paradigm where the reasoning process itself is formulated as a structured sequence of coarse action intents that guide the final policy. In this paper, we propose ACoT-VLA, a novel architecture that materializes the ACoT paradigm. Specifically, we introduce two complementary components: an Explicit Action Reasoner (EAR) and Implicit Action Reasoner (IAR). The former proposes coarse reference trajectories as explicit action-level reasoning steps, while the latter extracts latent action priors from internal representations of multimodal input, co-forming an ACoT that conditions the downstream action head to enable grounded policy learning. Extensive experiments in real-world and simulation environments demonstrate the superiority of our proposed method. Code is available at: https://github.com/AgibotTech/ACoT-VLA.