Skip to content
AI.info

Research

DynamicVLA: A Vision-Language-Action Model for Dynamic Object Manipulation

Overview Research area: Robotics — Vision-Language-Action (VLA) models for real-time manipulation of moving objects. Technical level: Intermediate. Comfortable reading assumes familiarity with VLA arc

arXiv
2601.22153
Published
2026-01-29
Authors
Haozhe Xie, Beichen Wen, Jiarui Zheng, Zhaoxi Chen, Fangzhou Hong, Haiwen Diao, Ziwei Liu

AI summary

Overview

Research area: Robotics — Vision-Language-Action (VLA) models for real-time manipulation of moving objects.

Technical level: Intermediate. Comfortable reading assumes familiarity with VLA architectures, diffusion/flow-matching action heads, and standard robotics evaluation metrics (success rate, path length, completion time), though the core ideas are explained conceptually.

Scope: The paper introduces DynamicVLA, a compact 0.4B-parameter VLA designed for latency-sensitive manipulation of moving objects, plus the Dynamic Object Manipulation (DOM) benchmark for training and evaluating such systems in simulation and the real world.

What This Paper Is About

Existing VLA models perform well when objects sit still, but they fail when objects move because their slow inference creates a delay between what the robot sees and when its actions actually execute. The paper's goal is to close this "perception–execution gap" with a lightweight model architecture plus two execution-scheduling mechanisms, and to supply the missing large-scale data needed to train such models in the first place.

Key Contributions

  1. A compact 0.4B-parameter VLA. Built on a truncated SmolLM2-360M language backbone (first 16 layers) and a convolutional FastViT vision encoder instead of a transformer-based encoder, giving fast multimodal inference without quadratic token growth across video frames. Actions are generated by a Flow Matching Transformer action expert predicting 20-step action chunks.

  2. Continuous Inference (CI). A pipelined execution scheme that starts the next inference cycle as soon as the previous one finishes, rather than waiting for the current action chunk to be fully executed. This removes "inter-chunk waiting" and keeps a continuous stream of control commands flowing.

  3. Latent-aware Action Streaming (LAAS). A latency-aware execution policy that discards actions predicted for timesteps already in the past and, where old and new action chunks overlap, prioritizes the newer chunk. This restores temporal alignment between perception and execution under inference delay.

  4. The Dynamic Object Manipulation (DOM) benchmark. The first large-scale benchmark dedicated to dynamic manipulation, containing 200K synthetic episodes across 2.8K scenes and 206 objects, plus a teleoperation-free pipeline that collects 2K real-world episodes across Franka Panda and AgileX PiPER arms. Evaluation is organized into Interaction, Perception, and Generalization dimensions.

Main Findings

  • Large simulation gains over all baselines. DynamicVLA reaches 47.06% average success rate on the DOM simulation benchmark, versus 13.61% for the strongest baseline (VLA-Adapter-Pro), with 8.53 s task completion time versus ~10 s for competitors.

  • Dramatic improvement specifically on interaction tasks. On Closed-loop Reactivity / Dynamic Adaptation / Long-horizon Sequencing, DynamicVLA scores 60.5/38.5/40.5% versus the best baseline's 21.0/20.5/7.5% — relative improvements of +188%, +88%, and +440% respectively.

  • Real-world perception improvement. In physical experiments, DynamicVLA achieves 51.9% success versus 11.7% for the best baseline, with baselines failing largely from spatial-temporal misalignment and stale action execution.

  • Perception degrades with task difficulty for all models. Performance falls consistently as tasks move from visual understanding to spatial reasoning to motion perception, and this is more severe for latency-constrained models that must shrink their VLM.

  • Generalization holds for appearance and motion shifts. DynamicVLA generalizes well to unseen objects and new motion regimes, but robustness to external environmental perturbations (unexpected pushes, sensor noise, surface irregularities) remains weak even for DynamicVLA.

  • The 360M backbone is the sweet spot. Ablations show 135M is too weak at reasoning (26.67% SR) and 1.7B is too slow (24.33% SR), while the 360M configuration achieves 47.06%.

  • CI and LAAS are complementary. Disabling both drops success to 30.27%. Using LAAS alone gives 36.11%, CI alone 39.72%, and both together 47.06% — each addresses a distinct failure mode.

  • FastViT beats a transformer vision encoder. Replacing the convolutional encoder with a SmolVLM-style transformer encoder drops success from 47.06% to 28.89%, showing the convolutional design's latency advantage matters more than raw representational capacity here.

Methodology in Plain English

The team starts from the observation that the bottleneck in dynamic manipulation is not perception but timing. If a model takes too long to produce an action, the object has already moved by the time the robot executes that action.

Their approach has three parts. First, they shrink the model aggressively — a small language model, a convolutional image encoder that compresses frames into far fewer tokens than a transformer would, and a flow-matching head that generates a short burst of future actions (a 20-step chunk) from cached features. Second, instead of the standard "think, then act, then think again" loop, they run inference continuously in the background so a fresh action chunk is always being prepared while the previous one executes. Third, they handle the messiness this creates: because inference takes time, some predicted actions are already stale when they arrive. LAAS simply throws those away and lets new predictions overwrite old ones at times where two chunks overlap.

For data, they build a shared four-stage controller (approach, grasp and lift, approach target and place, reset) that runs identically in simulation and on real hardware. In Isaac Sim, they have ground-truth object poses and velocities, so the controller can generate 200K episodes automatically across 2.8K scenes. On real robots, no such ground truth exists, so they construct a "real-world simulator": two synchronized Kinect cameras plus a wrist camera, instance segmentation with EfficientTAM, and geometric triangulation to estimate 6D pose and velocity in real time. This lets the same controller drive autonomous real-world collection at roughly 10 seconds per episode — avoiding teleoperation, which is useless when objects move faster than human reaction time.

Evaluation covers nine sub-dimensions across interaction, perception, and generalization, benchmarked against eight prior VLA and diffusion-policy baselines in simulation and three in the real world.

Why This Matters

Impact on research. The paper reframes dynamic manipulation as a latency and temporal-alignment problem rather than a perception or model-capacity problem, which is a meaningful shift for the VLA field. It also provides the first large-scale dataset and standardized benchmark for manipulation of moving objects, addressing a clear gap — nearly all existing robot learning datasets are static-scene tabletop manipulation.

Real-world applications:

  • Warehouse and logistics picking from moving conveyors, where objects arrive continuously rather than resting on a shelf.
  • Human-robot collaboration, such as receiving a handed object or handing one back in a fluid motion.
  • Household and service robotics, where objects roll, slide, or are pushed by the environment while the robot is mid-task.
  • Industrial assembly with part feeders or moving fixtures, where contact must be precise while the part is in motion.

Industry relevance. The 0.4B model size is significant for deployment: it is small enough to run at high frequency on modest onboard compute, which matters for robot platforms where cloud inference round-trips are not viable. The automatic data-collection pipeline is also directly industrially useful, since it removes the expensive and often infeasible teleoperation step that dominates robot data curation costs.

Future Directions

  • Latency-aware architectures under strict budgets. The paper explicitly notes the trade-off between multimodal understanding and responsiveness; better architectures or inference schemes that preserve richer understanding at high control rates remain open.

  • Longer-horizon dynamic tasks. The current formulation targets short- to medium-horizon reactive interaction. Extending to multi-stage tasks with persistent object motion would require integrating planning, memory, and task decomposition while keeping language conditioning and real-time execution intact.

  • Non-rigid and fluid dynamics. The data pipeline assumes rigid bodies with estimable 6D pose and velocity. Cloth, deformable objects, and fluids have continuously evolving states that are hard to represent in either simulation or the real-world estimation stack.

  • Robustness to external perturbations. Disturbance robustness was the weakest dimension even for DynamicVLA, and the authors omit real-world perturbation results as difficult to reproduce reliably — leaving a clear gap for methods that handle unexpected pushes, collisions, and sensor noise.

Target Audience

Robotics researchers and engineers working on VLA models, real-time robot control, or manipulation policy learning — particularly those who need fast closed-loop behavior on physical hardware rather than static benchmark performance. Also relevant to practitioners building data pipelines for robot learning, since the automatic simulation and real-world collection methodology is transferable independent of the specific model architecture. Readers should have some grounding in imitation learning, diffusion or flow-matching action models, and standard manipulation benchmarking to get full value.

Authors’ abstract

Manipulating dynamic objects remains an open challenge for Vision-Language-Action (VLA) models, which, despite strong generalization in static manipulation, struggle in dynamic scenarios requiring rapid perception, temporal anticipation, and continuous control. We present DynamicVLA, a framework for dynamic object manipulation that integrates temporal reasoning and closed-loop adaptation through three key designs: 1) a compact 0.4B VLA using a convolutional vision encoder for spatially efficient, structurally faithful encoding, enabling fast multimodal inference; 2) Continuous Inference, enabling overlapping reasoning and execution for lower latency and timely adaptation to object motion; and 3) Latent-aware Action Streaming, which bridges the perception-execution gap by enforcing temporally aligned action execution. To fill the missing foundation of dynamic manipulation data, we introduce the Dynamic Object Manipulation (DOM) benchmark, built from scratch with an auto data collection pipeline that efficiently gathers 200K synthetic episodes across 2.8K scenes and 206 objects, and enables fast collection of 2K real-world episodes without teleoperation. Extensive evaluations demonstrate remarkable improvements in response speed, perception, and generalization, positioning DynamicVLA as a unified framework for general dynamic object manipulation across embodiments.

Read the original paper