Teaching Tiny VLA Models Where to Look and How to Move
1. Key Themes
Achieving 7B-Scale Performance with 0.25B Parameters
The paper demonstrates that you do not need a massive, computationally expensive model to achieve state-of-the-art robotic manipulation. By using targeted training techniques, a 0.25B parameter model can outperform models that are 9x to 28x larger. As stated in the quantitative analysis: "XS-VLA achieves 90.3% average success with a 0.25B backbone, outperforming Vanilla SmolVLA-0.25B by 7.5 percentage points under the same evaluation protocol. It also surpasses Vanilla SmolVLA-2.25B despite using roughly one-ninth of the parameters, suggesting that the improvement comes from targeted spatial grounding and action modeling rather than model scale alone" (Section 5, Quantitative Analysis).
Overcoming the "Averaging" Problem in Multi-Operator Demonstrations
When robots are trained on teleoperation data from multiple humans, the model often gets confused by different valid approaches (e.g., one person grasps from the left, another from the right) and averages them into an invalid, jittery motion. XS-VLA solves this using Latent Flow Matching (LFM) with a CVAE latent variable during training, but crucially bypasses it during deployment for stable, deterministic execution. "A deterministic policy, or an insufficiently structured flow-based policy, may average these valid behaviors and produce trajectories that match no coherent style" (Section 1, Introduction). "During inference, the CVAE encoder is bypassed... we use its mean as the deterministic latent intent: z = 0. This removes sampling-induced stochasticity and yields stable action generation at deployment" (Section 3, Stage 2).
Automated Spatial Grounding Without Human Annotation
Labeling robotic datasets with bounding boxes or object keypoints is prohibitively expensive. XS-VLA uses a large vision-language model (Qwen3-VL-4B) to automatically generate coarse spatial labels for a smaller model, completely removing the need for human annotation. "CSD uses Qwen3-VL-4B to produce teacher-derived coarse image-plane location labels for task-relevant objects, which are quantized into a spatial vocabulary and distilled into a SmolVLM2-0.25B backbone without human annotations" (Abstract).
Real-World Bimanual and Long-Horizon Success
The improvements are not confined to simulation; the paper shows massive leaps in real-world bimanual tasks on the Mobile ALOHA platform, particularly in long-horizon sequential coordination. "In real-world experiments, we design three tasks covering single-arm placement, precision bimanual stacking, and long-horizon sequential coordination, where XS-VLA improves average task success from 21.7% to 65.0%" (Abstract). Specifically, on the long-horizon task, success jumped from 20.0% to 75.0% (Table 3).
2. Contrarian Perspectives
Scale is Not the Only Path to Spatial Reasoning
The prevailing trend in Physical AI is to scale up VLA models to 7B+ parameters to unlock better spatial reasoning and grounding. This paper argues that explicit, targeted distillation of spatial cues is more efficient than simply adding parameters. "Making a VLA model tiny, however, removes abilities that are essential for manipulation. The first missing ability is knowing where to look... XS-VLA achieves 90.3% average success... suggesting that the improvement comes from targeted spatial grounding and action modeling rather than model scale alone" (Section 1, Section 5).
Stochasticity at Deployment is a Bug, Not a Feature
Many modern generative policies (like Diffusion Policy) rely on sampling noise at inference time to generate actions. XS-VLA explicitly rejects this, arguing that deployment should be deterministic to ensure stability. "During inference, the CVAE encoder is bypassed. Since the prior is a standard Gaussian... we use its mean as the deterministic latent intent: z = 0. This removes sampling-induced stochasticity and yields stable action generation at deployment" (Section 3, Stage 2).
3. Companies Identified
- Hugging Face: Creators of the SmolVLM2-0.25B and SmolVLA architectures used as the base student model. "SmolVLM2 (Hugging Face 2024)... represent efforts to distill capabilities into architectures with fewer than 3 billion parameters" (Section 2).
- Alibaba (Qwen): Creators of Qwen3-VL-4B, the teacher model used to auto-generate spatial labels. "Qwen3-VL-4B (Bai et al. 2025) introduced the concept of treating bounding box coordinates as tokens, allowing for explicit grounding" (Section 2).
- Physical Intelligence: Creators of the π0 flow matching policy, which XS-VLA builds upon and modifies. "flow matching policy (Lipman et al. 2023; Black and et al. 2024) has emerged as a more efficient alternative" (Section 2).
- Xlerobot: A low-cost dual-arm mobile robot platform used for additional real-world validation. "Real-World Evaluation on Xlerobot Platform... The task requires the robot to grasp a carrot with its left hand..." (Appendix D).
4. People Identified
- Zipeng Fu, Tony Z. Zhao, Chelsea Finn: Creators of the Mobile ALOHA platform used for the real-world bimanual experiments. "Mobile ALOHA (Fu, Zhao, and Finn 2024) platform" (Section 4).
- Iok Tong Lei, Zhidong Deng, et al.: Researchers at Tsinghua University (and Wuxi Dexteroushands Robotic Technology Co.) who authored the XS-VLA framework. "Department of Computer Science and Technology, Tsinghua University... Wuxi Dexteroushands Robotic Technology Co." (Author affiliations).
5. Operating Insights
Distillation is a Cheap, High-ROI Strategy for Edge Robotics
If you are deploying robots on edge hardware, you cannot run a 7B VLA model at 10-50Hz. Instead of paying humans to label spatial data for a small model, you can use a large, off-the-shelf VLM to auto-label your training data, distill that into a small model, and then discard the large model entirely before deployment. "CSD provides explicit task-conditioned spatial supervision before action learning... The teacher is used exclusively to estimate the target-object center from the original RGB observation and task instruction" (Appendix A). "Qwen3-VL-4B and explicit coarse spatial labels are not used during downstream policy training or deployment" (Section 3, Stage 1).
Multi-Operator Data Requires Latent Variable Organization
If your data collection pipeline involves multiple human teleoperators, standard behavior cloning will likely fail by averaging their distinct styles into invalid motions. You need an architecture that can organize these multimodal behaviors in latent space during training, but output deterministic actions at inference. "Human robot demonstrations are often multimodal: different operators may use different approach directions, speeds, grasp timings, or bimanual coordination patterns. A deterministic policy... may average these valid behaviors and produce trajectories that match no coherent style" (Section 3, Stage 2).
6. Overlooked Insights
The 3x3 Spatial Grid is Intentionally Coarse (and that's enough)
The paper does not attempt to predict exact bounding boxes or pixel coordinates for objects. Instead, it divides the image into a 3x3 grid (e.g., "top left", "center"). This coarse approach is intentionally robust to the inevitable errors made by the teacher VLM, and it is sufficient to bias the small model's attention to the correct region of the image. "Rather than regressing precise coordinates or bounding boxes, we quantize the center into one of nine coarse spatial labels using a deterministic 3×3 grid, which is robust to small localization errors while still providing useful directional information" (Section 3, Stage 1).
Extremely Low Hardware Requirements for Inference
Because the model is only 0.25B parameters and the teacher is discarded, the inference memory footprint is incredibly small, making it highly viable for commercial edge deployment without expensive GPUs. "Thanks to our 0.25B parameter size, we only need 1600M GPU memory to run inference of our XS-VLA" (Appendix D, OpenARM and PiPER).