To deploy a Vision-Language-Action model (VLA) in your own setup, you first fine-tune a large
pre-trained model on a handful of demonstrations collected in that specific environment—the
same camera placement, the same robot embodiment, the same workspace. A small number of demo
trajectories is enough to get the robot working in the lab.
The problem is that these fine-tuned VLAs are remarkably fragile to perturbations. Because they
operate directly on 2D RGB observations without explicit spatial supervision, they overfit to the exact
configuration seen during training. Recent robustness studies such as LIBERO-Plus quantify this:
success rates that exceed 90% on the original setup collapse dramatically the moment any factor is
perturbed.
VLAs collapse under perturbations — and camera changes are by far the worst
| Model |
Original |
Camera |
Robot |
Language |
Light |
Background |
Noise |
Layout |
| OpenVLA | 76.5 | 1.1 | 4.1 | 26.8 | 4.4 | 25.3 | 19.3 | 31.6 |
| OpenVLA-OFT | 97.1 | 59.7 | 37.2 | 81.5 | 85.8 | 92.4 | 76.7 | 77.1 |
| OpenVLA-OFTw | 95.3 | 16.8 | 43.7 | 73.2 | 68.2 | 92.5 | 51.4 | 72.3 |
| OpenVLA-OFTm | 97.6 | 57.9 | 30.6 | 83.6 | 91.6 | 83.6 | 76.3 | 73.2 |
| π0 | 94.2 | 15.8 | 6.6 | 61.0 | 79.6 | 78.5 | 79.4 | 70.4 |
| π0-fast | 85.5 | 66.4 | 24.8 | 63.3 | 73.0 | 67.7 | 75.8 | 70.3 |
| Nora | 87.9 | 4.0 | 41.1 | 67.0 | 31.0 | 50.5 | 17.6 | 63.9 |
| WorldVLA | 79.1 | 0.3 | 30.2 | 44.2 | 29.4 | 14.5 | 12.2 | 39.4 |
| UniVLA | 95.2 | 4.3 | 50.3 | 71.8 | 59.1 | 80.0 | 25.3 | 34.3 |
| RIPT-VLA | 97.5 | 58.3 | 36.7 | 80.1 | 87.9 | 90.4 | 73.8 | 76.5 |
Task success rate (%) of recent VLAs under each perturbation factor, reproduced from
LIBERO-Plus (Fei et al., 2025), Table 1. Across nearly every model, the
camera column shows the largest degradation—dropping to single
digits for several policies—making camera viewpoint the single most critical failure mode.
We tackle exactly this camera sensitivity of VLAs. Even minor, unavoidable shifts in everyday
unstructured environments break the policy—for example, we observe that a mere 3 cm shift in
the wrist camera can halve the success rate—yet the end-to-end nature of VLAs normally forces you
to recollect demonstrations and re-fine-tune the entire model after every change.