Recent vision-language-action (VLA) models have a hidden weakness: they often rely on visual cues rather than truly understanding language instructions. A new pretraining method called LA4VLA strips away vision entirely during training, forcing robots to learn the direct link between words and actions—and the result is dramatically more robust instruction following.
What the Researchers Built
The team behind LA4VLA (Language-Action for Vision-Language-Action) started with a diagnostic experiment. When they swapped or removed visual inputs from standard VLA policies, the robots’ ability to follow language commands collapsed—even though the instruction stayed the same. This proved that typical VLA training doesn't truly ground actions in language; it memorizes visual patterns instead.
To fix this, they built a dataset called LA4-33K containing 33,000 episodes where visual observations are completely removed. Each episode is a short "atomic action" segment—like "push the red button" or "slide left"—paired only with a language instruction, robot joint states, and motion trajectory. They constructed this by taking the large-scale DROID dataset (10,000+ hours of robot demos), segmenting long demonstrations into bite-sized pieces using a vision-language model (Qwen-3-VL-Plus), and then stripping out all images. The result is a lean, vision-free training signal that teaches the robot to connect words directly to motion.
Key Results

LA4VLA delivers consistent improvement across benchmarks, architectures, and real robots. On MetaWorld tasks, a 1B-parameter model pretrained with LA supervision reached an average success rate of 87.53% when mixed with VLA data (MixPT), compared to 83.00% for LA-only pretraining and much lower for no pretraining. On LIBERO benchmarks, LA-VLA sequential pretraining hit 96.28%, up from 95.30% with LA alone.
The gains are even more striking when vision is degraded under noise. A standard VLA policy without pretraining managed only 27.5% success under visual perturbations. VLA pretraining lifted that to 42.5%, but LA pretraining alone achieved 67.5%, and MixPT reached 70.0%.
| Pretraining Method | MetaWorld Avg Success | LIBERO Avg Success | Robustness (noise) |
|---|---|---|---|
| No pretraining | 58.39% (StarVLA baseline) | 93.70% | 27.5% |
| VLA pretraining only | N/A | N/A | 42.5% |
| LA pretraining only | 83.00% (1B model) / 69.91% (StarVLA) | 95.30% | 67.5% |
| LA-VLA sequential | 86.75% | 96.28% | N/A |
| MixPT (LA + VLA mixed) | 87.53% | 95.75% | 70.0% |
The architecture transfer also holds: pretraining StarVLA with LA lifted its MetaWorld performance by 11.52 points (from 58.39% to 69.91%), with the hardest tasks improving by 30 points.
How It Works

LA4VLA operates in three stages: dataset construction, pretraining, and downstream finetuning.
Dataset construction. The team used Qwen-3-VL-Plus to segment 9,560 episodes from the DROID dataset into short atomic-action intervals. The VLM received video frames, task descriptions, and keyframe events, then output a JSON list of segments—each with a primitive label (e.g., "push", "grasp", "slide"), a vision-agnostic instruction, and start/end timestamps. This cost only 4.63K input tokens per episode, making it feasible for large-scale use. Human annotators then verified and refined the proposals.
Pretraining. During LA pretraining, the model receives only the language instruction and the robot's proprioceptive state (joint positions, gripper status) plus the action trajectory. Visual observations are masked out entirely. The model uses a flow-matching action head to predict continuous action sequences. This forces the policy to build a direct language-to-action mapping without relying on visual shortcuts.
Integration with VLA. The best results come from either sequential LA→VLA pretraining or mixing LA and VLA data in a single stage (MixPT). In the sequential approach, the model first learns the language-action mapping (vision-free), then fine-tunes with vision enabled. In MixPT, both types of batches are interleaved during one pretraining run.
Real-world deployment. On a UFactory xArm6 with parallel gripper and two RGB cameras, a single multi-task checkpoint was finetuned on 90 teleoperated demonstrations (30 per task: Press Button, Place Book, Place Drink). The LA-pretrained policy outperformed the standard VLA policy on all three tasks, especially under noisy or occluded views.
Why This Matters for Robotics
Current-generation VLA models are expensive to train on massive video datasets, yet they still fail when camera angles change, lighting varies, or sensors degrade. LA4VLA shows that separating language-action learning from vision reduces this brittleness. For robot buyers and engineers deploying humanoid robots or used industrial robots in real warehouses, this means policies that can handle dirty lenses, poor lighting, or temporary camera blackouts without crashing.
The method also reduces data requirements: LA4-33K was built entirely from existing datasets—no new robot runs needed. This could make robust instruction following accessible to smaller teams without massive data collection budgets. And because the pretrained language-action mapping transfers across architectures, it's a plug-in improvement for any VLA model, from research prototypes to warehouse robots.
Limitations and Open Questions
LA4VLA depends on a high-quality VLM for temporal segmentation—if the VLM mislabels an atomic action, the noise propagates into the pretrained policy. Human verification adds a bottleneck. The dataset is currently limited to DROID and similar tabletop manipulation tasks; it's unclear how well the approach scales to mobile manipulation or human-robot interaction. Additionally, the method still requires some visual data during dataset construction (to drive the VLM segmentation), so it's not purely vision-agnostic from scratch. Finally, the one-billion-parameter model used in experiments is too large for edge deployment—quantization and distillation are needed for real-time use on embedded controllers.
Frequently Asked Questions
What exactly does LA4VLA remove from training data? It removes all camera images and video frames, keeping only the language instruction, robot joint states, and the commanded action trajectory. Vision is reintroduced later during finetuning.
How does LA pretraining improve robustness to visual noise? By forcing the policy to learn a direct language-to-action mapping without visual shortcuts, the model becomes less dependent on clean, consistent visual input. When vision is later added, the policy can handle perturbations without losing instruction following.
Can I use LA4VLA with my existing VLA model? Yes—the method is architecture-agnostic. The paper demonstrates success with both InternVL3 and StarVLA. You would pretrain your model on the LA4-33K dataset (or construct your own LA episodes) before finetuning on your specific task.
Is the LA4-33K dataset publicly available? The paper states the dataset is constructed from the publicly available DROID dataset, but it does not explicitly confirm open release of the LA4-33K episodes. Contact the authors for access details.
Conclusion
LA4VLA exposes a critical flaw in current VLA training: models fake instruction following by leaning on visual patterns. By pretraining on vision-free language-action episodes, LA4VLA forces the model to truly connect words to motion. The result is a more robust, instruction-faithful policy that transfers across architectures and degrades gracefully under sensor noise.
