Vision-Language-Action · Robotics · Multimodal Models

Qwen-VLA: One Model for Manipulation, Navigation, and Trajectories

Qwen-VLA extends Qwen's vision-language stack with a DiT action decoder and embodiment-aware prompts to run manipulation, navigation, and trajectory prediction in one model — 97.9% on LIBERO and 69.0% OSR on R2R.

Qwen-VLA: One Model for Manipulation, Navigation, and Trajectories

Quick answer

Qwen-VLA is a single vision-language-action (VLA) model that handles manipulation, navigation, and trajectory prediction at once, instead of training one specialist per task. It extends Qwen’s vision-language stack into continuous control through a DiT-based (diffusion transformer) action decoder, and the instruct variant reports 97.9% on LIBERO, 73.7% on Simpler-WidowX, 86.1%/87.2% on RoboTwin-Easy/Hard, 69.0% OSR on R2R, and 59.6% SR on RxR — one checkpoint covering benchmarks that normally need separate models.

The fragmentation problem it targets

Embodied AI is usually built as silos: one model learns to grasp, another learns to navigate a building, a third predicts where things will move. Each is tuned to its own action space, robot, and environment, so capabilities do not transfer and every new task or robot arm restarts the data-and-training cycle. Qwen-VLA’s bet is that these look different only on the surface — under the hood they are all “given pixels and a language instruction, predict the next actions or trajectory,” and a single model trained on all of them can share the visual grounding and spatial reasoning instead of relearning it three times.

How the model is built

Qwen-VLA starts from Qwen’s vision-language model — the part that already does perception, understanding, and reasoning over images and text — and bolts on a DiT-based action decoder that turns that understanding into continuous actions and trajectories. The vision-language backbone reads the scene and instruction; the diffusion decoder generates the motion. This matters because language models natively emit discrete tokens, which is an awkward fit for the smooth, high-frequency control a robot needs; a diffusion action head is a cleaner way to produce continuous trajectories.

Two design choices do the unification work. First, embodiment-aware prompt conditioning: a robot-specific text description tells the model which body it is currently driving and what its control convention is, so the same weights can drive a WidowX arm, an ALOHA bimanual setup, or a navigating agent without separate heads per platform. Second, the authors recast manipulation, navigation, and trajectory prediction into one action-and-trajectory prediction framework, so all three tasks speak the same output language and can be co-trained.

What’s in the training mix

The pretraining recipe is deliberately heterogeneous: robot manipulation trajectories, human egocentric demonstrations, synthetic simulation data, vision-and-language navigation data, trajectory-centric supervision, and auxiliary vision-language data. The egocentric-human and simulation sources are the interesting part — they let the model learn manipulation priors without needing every skill demonstrated on a real robot, which is the expensive bottleneck in robot learning. Mixing navigation and trajectory data into the same model is what lets it claim transferable spatial reasoning rather than three disconnected skills.

Key results

All numbers are for the Qwen-VLA-Instruct variant, reported by the authors:

  • LIBERO: 97.9% — near-ceiling on this manipulation suite, where strong specialists already cluster in the high 90s, so the headline is “a unified model stays competitive,” not “a new manipulation record.”
  • Simpler-WidowX: 73.7% and RoboTwin-Easy/Hard: 86.1%/87.2% — solid across simulated manipulation, with the hard split essentially matching the easy one.
  • R2R: 69.0% OSR and RxR: 59.6% SR — vision-and-language navigation handled by the same checkpoint that does manipulation, which is the genuinely unusual claim here.
  • Real-world ALOHA: 76.9% average OOD success — under variations in scene layout, background, lighting, object configuration, and embodiment, i.e. the out-of-distribution stress test, not the in-distribution number.
  • DOMINO dynamic manipulation: 26.6% zero-shot — honest and low; dynamic, never-seen tasks remain hard, and the authors report it rather than hide it.

The real result is not any single score — most have strong task-specific competitors — but that one set of weights posts respectable numbers across manipulation and navigation and trajectory benchmarks at the same time.

Limits and open questions

The 26.6% zero-shot on DOMINO is the most telling figure: dynamic manipulation on unseen tasks is still mostly unsolved, and unification does not fix it. LIBERO at 97.9% is near saturation, so it shows the model is not paying a tax for being general more than it shows new capability. The paper does not foreground a parameter count, training compute, or inference latency in the abstract, so the practical cost of running one big multi-task model versus several small specialists is unclear — and latency matters a lot for real-time control. “Unified” also leans on hand-written embodiment prompts, which is a manual integration step per new robot, not automatic morphology discovery. As with most VLA work, the real-world evidence is a controlled ALOHA setup, not messy deployment, so generalization claims should be read as promising rather than proven.

FAQ

What is Qwen-VLA?

Qwen-VLA is a unified vision-language-action model from the Qwen team that performs robot manipulation, vision-and-language navigation, and trajectory prediction in a single model, by extending Qwen’s vision-language stack with a DiT-based action decoder.

How does Qwen-VLA handle different robots?

Qwen-VLA uses embodiment-aware prompt conditioning: a robot-specific text description specifies the current embodiment and its control convention, so the same weights can drive different robot platforms without separate per-robot output heads.

What benchmarks does Qwen-VLA report?

Qwen-VLA-Instruct reports 97.9% on LIBERO, 73.7% on Simpler-WidowX, 86.1%/87.2% on RoboTwin-Easy/Hard, 69.0% OSR on R2R, 59.6% SR on RxR, 76.9% average out-of-distribution success on real-world ALOHA, and 26.6% zero-shot on DOMINO dynamic manipulation.

Is Qwen-VLA actually better than specialist robot models?

On individual benchmarks Qwen-VLA is competitive rather than dominant — LIBERO at 97.9% is near the ceiling specialists already reach. Its distinct claim is breadth: one checkpoint that stays strong across manipulation and navigation and trajectory tasks at once.

One line: extend a vision-language model with a diffusion action head and embodiment prompts, and a single model can do manipulation, navigation, and trajectories together. Read the original paper on arXiv.