REVIEW 4 major objections 5 minor 52 references
CofactVLA: Deconfounding Vision-Language-Action Models via Counterfactual Intervention
T0 review · 4 major / 5 minor · reviewed 2026-08-07 · deepseek-v4-flash
Pith's one-line read CofactVLA deconfounds vision-language-action policies by subtracting a language-masked counterfactual branch from both latent features and generated actions, and reports a 52.3-point absolute gain in real-world out-of-distribution success.
desk verdict A useful empirical recipe with a load-bearing theoretical flaw: Equation (5) doesn't deconfound, but the experiments deserve referee time. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The central object is the language-masked counterfactual branch: the same VLA run in the same visual scene with the language masked out, yielding a visual-only velocity field and visual-only attention features. OPG exploits the exact score-velocity equivalence of the Gaussian flow-matching forward process so that orthogonal projection of the factual velocity field away from the counterfactual one is a legitimate re-weighting of action-mode probabilities rather than a heuristic interpolation. CCR makes the same separation at the representation level by taking the positive part of the covariance difference between the two branches, which the paper proves spans exactly the spurious visual subspace under its gain-bias and contrastive eigengap assumptions.
What would settle it
The decisive experiment is to feed the counterfactual branch a different, semantically meaningful instruction instead of a mask: if the direction of the supposed visual bias changes with the content of that wrong instruction, the branch is not language-free and the subtraction is mis-specified; alternatively, on a dataset where the base policy already follows language with no measurable vision-override, CofactVLA should leave success rates unchanged, and any drop would show the intervention deletes useful signal.
Extended reading notes
Core claim
On the paper's own terms, action generation in a VLA is a Dual-path Deconfounding Graph: the language instruction has a causal path to the action, but the dense image also opens a backdoor image-to-confounder-to-action path that overrides the instruction. To sever the backdoor, the paper constructs a counterfactual branch in which the language token is masked, treating its output as the pure visual instinct. Action-level OPG projects the factual flow velocity onto that instinct and subtracts the projection, leaving an orthogonal component that is then re-weighted as the deconfounded semantic intent; feature-level CCR takes the covariance difference between counterfactual and factual attention features, extracts its positive eigenspace as the nuisance basis, and projects the features away from it. The paper asserts that this dual intervention cleanly eradicates visual bias while preserving the valid action manifold, and supports the claim with state-of-the-art simulation scores and a 52.3-point absolute real-world OOD improvement over the base policy.
Load-bearing premise
The load-bearing premise is that the language-masked, image-only branch captures exactly the visual confounder effect, with that effect collinear with the no-language velocity field or confined to the positive eigenspace of the covariance difference; if the image-only branch still carries useful semantic or affordance information, subtracting it removes legitimate signal and the deconfounded action is not guaranteed to preserve the language intent.
Editorial extensions
If this is right
- Policies trained with CofactVLA should keep following the instruction when a salient distractor object competes for the robot's attention, which is the exact failure mode the paper diagnoses.
- The intervention operates inside a single forward pass, so it can be layered onto existing flow-matching VLA checkpoints instead of requiring a redesigned policy network.
- The reported zero-shot results imply that the method transfers across simulation and physical hardware: the real-world OOD success rate climbs from 23.5 percent to 75.8 percent while the standard-environment rate stays at 90.8 percent.
- Because the covariance and projection penalties are applied at two different levels of the stack, the two mechanisms can be ablated, tuned, or combined independently, with the paper reporting combined performance above either alone.
Reading between the lines
- The paper leaves implicit that the same orthogonal-subtraction recipe applies to any two-modality policy where one dense modality overrides a sparse command, so the method could transfer beyond robotics to vision-and-language generation or audio-visual control.
- The key untested boundary is the assumption that the image-only branch encodes no task-relevant semantics; a stronger design would estimate the confounder subspace from data instead of identifying it with the language-masked branch.
- The reported sensitivity sweeps (guidance scale gamma and intervention strength beta) suggest the method's benefit depends on calibrating both strengths, so one testable extension is an automatic scheduler that adapts them per scene rather than using fixed values.
- If the deconfounding truly isolates a causal language direction, then interventions on the orthogonal component should be composable: the same projection machinery could in principle damp multiple confounders (color, layout, camera angle) one at a time.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The manuscript proposes CofactVLA, a two-branch causal intervention framework for Vision-Language-Action (VLA) models that aims to remove 'vision-override' bias caused by spurious visual confounders. A factual branch conditioned on image and language and a counterfactual branch conditioned only on the image are generated in a single forward pass; the paper then applies two interventions: Action-Level Orthogonal Projection Guidance (OPG) to the flow-matching velocity fields, and Feature-Level Counterfactual Covariance Reduction (CCR) to latent attention features. Experiments on LIBERO, LIBERO-Plus, and a real 6-DoF robot arm report state-of-the-art results, including a 52.3% absolute success-rate gain in real-world out-of-distribution scenarios. The central claim is that these interventions 'cleanly eradicate' visual bias and preserve the pure language semantic intent.
Significance. If the deconfounding mechanism were correct as stated, this would be an important contribution: a general counterfactual intervention method for suppressing visual shortcuts in VLA policies, with strong evidence of OOD generalization. The proposed framework is simple and could be applied to any flow-matching-based VLA. However, the theoretical foundation is the principal added value of the paper, and it is not currently supported by the manuscript's own equations. The empirical improvements may be real, but as written they do not establish the causal deconfounding mechanism claimed. The paper does not ship code or machine-checked proofs, so the credibility of the contribution rests on the derivation and the experiments.
major comments (4)
- [Section 3.2, Eq. (5)] The central OPG formula does not perform the claimed deconfounding. Under the paper's own assumption that the counterfactual branch v_uncond captures exactly the visual bias v_bias, decompose v_cond = v_sem + v_bias with v_sem orthogonal to v_bias. Eq. (3) gives v_proj = v_bias and Eq. (4) gives v_perp = v_sem. But Eq. (5) then yields v_causal = v_cond + gamma * v_perp = (1 + gamma) * v_sem + v_bias. The spurious bias term v_bias remains with coefficient 1; it is not eradicated, only relatively downweighted. The claims in Section 3.2 that OPG 'cleanly eradicates visual bias' and 'exclusively re-weights the causal mode odds along the semantic direction' are therefore false as written. To actually remove the bias, the formula would need v_causal = v_perp or v_causal = v_cond - gamma * v_proj. Because OPG is one of the two core contributions, this is a load-bearing error.
- [Section 3.2, density definitions] The marginal densities are mislabeled. The manuscript defines 'p_cond := p(A_tau | O)' and 'p_uncond := p(A_tau | T)', but the factual branch defined in Section 3.1 is conditioned on both O and T, and the counterfactual branch is conditioned on O only. The correct labels should be p(A_tau | O, T) and p(A_tau | O), respectively. This reversal is more than a typo: it indicates a sign or definitional inconsistency in the derivation of the intervention, and it should be corrected before the score/velocity composition argument can be evaluated.
- [Section 3.3 and Appendix A.1, CCR proof] The proof of Theorem 1 does not support the implemented CCR algorithm. The appendix establishes identifiability for the top generalized eigenspace of the pair (Sigma_Delta, Sigma_0) and uses the Sigma_0-orthogonal projector Pi_C = B(B^T Sigma_0 B)^{-1} B^T Sigma_0. In contrast, the main text Eq. (6)-(9) performs an eigendecomposition of Delta_Sigma = Sigma_cf - Sigma_f and subtracts the plain projection (F U_bias) U_bias^T using ordinary eigenvectors with eigenvalues above epsilon. Assumption 2 is stated for the whitened matrix M = Sigma_0^{-1/2} Sigma_Delta Sigma_0^{-1/2}, not for Delta_Sigma. The proof therefore does not show that the top-k eigenvectors of Delta_Sigma span S_C, nor that the plain projection in Eq. (9) removes the nuisance component while preserving S_O. The theoretical guarantee for CCR is unproved for the implemented method.
- [Section 3.3, Assumptions 1-2] The 'strict' guarantees of CCR rest entirely on Assumptions 1 and 2, which are asserted without empirical validation or a concrete geometric argument linking the latent feature space of a VLA backbone to the assumed orthogonal decomposition. In particular, Assumption 2 requires that the eigenvalues of the whitened covariance difference on the confounder subspace are strictly larger than those on the intent subspace; the paper provides no experiment, visualization, or diagnostic that checks this spectral separation. Since the method's causal interpretation depends on this assumption holding in practice, the current manuscript does not establish that CCR actually deconfounds rather than merely applying a heuristic feature-space penalty.
minor comments (5)
- [Section 3.2, Eq. (1)] Eq. (1) is the definition of conditional mutual information, not a substantive theorem; the text's phrasing 'This theorem explicitly dictates that the visual confounder intrinsically corrupts' overstates what the identity establishes.
- [Figure 2 caption] The caption refers to 'Contrastive Covariance Reduction' while the method is called 'Counterfactual Covariance Reduction' in the text and abstract; the terminology should be unified.
- [Table 2] Several entries in Table 2 appear to run together (e.g., '65.121.6' and 'Openvla-OFT_m: 55.6 21.781.0 92.791.0 78.668.7 67.9'), suggesting a formatting or column-alignment error that should be fixed.
- [Appendix A.5] There are stray '/uni000...' character sequences in the text around Figure 12 and several figure captions, indicating a corrupted source-rendering artifact that should be removed.
- [Contributions and Section 5] The wording 'strictly deconfounded action trajectories' and 'strictly and consistently grounded in causal semantic intents' is stronger than what the current equations support; after correcting OPG, these claims should be reworded to match the implemented formula.
Circularity Check
OPG's 'pure semantic intent' is the residual defined by its own counterfactual branch; Eq. (5) retains v_bias, so the deconfounding claim is built into the definition rather than derived.
-
self definitional
[Section 3.2, Eqs. (3)-(5)]
"By explicitly subtracting this collinear visual bias, we extract the strictly orthogonal velocity component v⊥, which represents the pure, deconfounded language semantic intent: v⊥ = vcond − vproj. ... The final causally intervened velocity field is then constructed as: vcausal = vcond + γ·v⊥ ... this orthogonalization guarantees that our intervention exclusively re-weights the causal mode odds along the semantic direction, cleanly eradicating visual bias."
The paper first stipulates that the language-masked branch (conditioned only on O) is the visual confounder, so v_uncond is declared to be the bias. Under that stipulation, Eq. (3) projects v_cond onto the bias and Eq. (4) defines v_perp as whatever remains. Calling that residual the 'pure, deconfounded language semantic intent' is therefore a re-description of the construction, not an empirical or mathematical derivation. The claim of clean eradication also fails under the paper's own decomposition: if v_cond = v_sem + v_bias, then Eq. (5) gives v_causal = (1+γ)v_sem + v_bias, so the bias survives with coefficient 1. The central deconfounding result is thus equivalent to the input definitions and the unproved identification of v_uncond with C.
full rationale
The main derivation chain is not supported by load-bearing self-citations: the only author self-citation ([21], related work on parameter-efficient adaptation) is not load-bearing, and the OOD/real-world evaluations are external benchmarks that would remain informative even if the causal story were wrong. However, the action-level claim that OPG 'cleanly eradicates visual bias and exclusively re-weights the causal mode odds' is not a consequence of Eqs. (3)-(5); it is an interpretation attached to the residual v_perp after the paper has already identified the no-language branch with the confounder. That identification is the entire content of the deconfounding claim, and it is assumed rather than tested. Furthermore, Eq. (5) adds the original factual velocity back, so under the paper's own orthogonal decomposition the bias term remains present, making the 'clean eradication' wording false as written. The scalar strengths γ and β are tuned on the LIBERO benchmark before reporting LIBERO results, which is a fitting concern, but the real-world +52.3% OOD gain is an independent external result, so this is not a fitted-input-called-prediction circularity by itself. On balance: one central step reduces by construction to its own counterfactual-branch definition, warranting a partial circularity score of 6; the empirical results are not made circular by that step.
Assumptions & free parameters
free parameters (3)
- causal scale gamma =
2.0
- intervention strength beta =
0.15
- eigenvalue threshold epsilon for top-k selection =
not reported
assumptions (4)
- ad hoc to paper Assumption 1: latent feature space decomposes orthogonally into causal intent subspace S_O and spurious confounder subspace S_C.
- ad hoc to paper Assumption 2: eigenvalues of the whitened covariance difference on the confounder subspace are strictly larger than those on the intent subspace.
- domain assumption Demonstrations exhibit nuisance-correlated mode selection, I(Z;C|O)>0 for action modes Z=h(A).
- domain assumption The language-masked counterfactual branch yields the visual confounder effect.
invented entities (1)
-
Visual confounder C
Cite this review
Pith. "Pith review of CofactVLA: Deconfounding Vision-Language-Action Models via Counterfactual Intervention." pith.science (2026). https://pith.science/paper/7OCYAB4W
@misc{pith2026260804396,
author = {Pith},
title = {Pith review of: CofactVLA: Deconfounding Vision-Language-Action Models via Counterfactual Intervention},
year = {2026},
howpublished = {\url{https://pith.science/paper/7OCYAB4W}},
note = {Machine review of arXiv:2608.04396}
}
read the original abstract
Vision-Language-Action (VLA) models have driven significant progress in robotic manipulation, yet they fundamentally struggle with the vision-override phenomenon. Driven by the severe modality imbalance between dense visual streams and sparse linguistic instructions, VLAs frequently fall prey to causal confusion. Instead of treating language as the primary causal driver, the policy entirely bypasses the original instruction by overfitting to spurious visual confounders, such as prominent objects or familiar layouts. To systematically alleviate this bias, we formalize the process of action generation as a Dual-path Deconfounding Graph (DDG) and propose CofactVLA, a novel causal intervention framework. By dynamically constructing a language-masked counterfactual branch within a single forward pass, CofactVLA isolates and neutralizes visual confounders through two synergistic mechanisms. First, Action-Level Orthogonal Projection Guidance (OPG) geometrically projects the factual velocity field away from the counterfactual visual bias during continuous flow matching, extracting the pure semantic intent. Second, Feature-Level Counterfactual Covariance Reduction (CCR) mathematically deconfounds latent representations by penalizing the positive eigenspace of the covariance difference, explicitly suppressing dominant visual shortcuts while preserving the causal language intent. Extensive experiments demonstrate that CofactVLA establishes a new state-of-the-art across diverse simulation benchmarks. Beyond simulation, real-world robot experiments demonstrate the causal efficacy of our method in bridging the generalization gap, yielding a 52.3\% absolute success rate gain under out-of-distribution scenarios.
Figures
Figures from the paper (16 more)
Reference graph
Works this paper leans on
-
[1]
RT-1: Robotics transformer for real-world control at scale.arXiv preprint arXiv:2212.06817, 2022
Anthony Brohan, Noah Brown, Justice Carbajal, Yevgen Chebotar, Joseph Dabis, Chelsea Finn, Keerthana Gopalakrishnan, Karol Hausman, Alex Herzog, Jasmine Hsu, et al. RT-1: Robotics transformer for real-world control at scale.arXiv preprint arXiv:2212.06817, 2022
arXiv 2022
-
[2]
RT-2: Vision-language-action models transfer web knowledge to robotic control
Brianna Zitkovich, Tianhe Yu, Sichun Xu, Peng Xu, Ted Xiao, Fei Xia, Jialin Wu, Paul Wohlhart, Stefan Welker, Ayzaan Wahid, Quan Vuong, Vincent Vanhoucke, Huong Tran, Radu Soricut, Anikait Singh, Jaspiar Singh, Pierre Sermanet, Pannag R Sanketi, Grecia Salazar, Michael S Ryoo, Krista Reymann, Kanishka Rao, Karl Pertsch, Igor Mordatch, Henryk Michalewski, ...
work page 2023
-
[3]
Vision-language foundation models as effective robot imitators
Xinghang Li, Minghuan Liu, Hanbo Zhang, Cunjun Yu, Jie Xu, Hongtao Wu, Chilam Cheang, Ya Jing, Weinan Zhang, Huaping Liu, Hang Li, and Tao Kong. Vision-language foundation models as effective robot imitators. InThe Twelfth International Conference on Learning Representations, 2024
2024
-
[4]
Unleashing large-scale video generative pre-training for visual robot manipulation
Hongtao Wu, Ya Jing, Chilam Cheang, Guangzeng Chen, Jiafeng Xu, Xinghang Li, Minghuan Liu, Hang Li, and Tao Kong. Unleashing large-scale video generative pre-training for visual robot manipulation. In The Twelfth International Conference on Learning Representations, 2024
work page 2024
-
[5]
Johan Bjorck, Fernando Castañeda, Nikita Cherniadev, Xingye Da, Runyu Ding, Linxi Fan, Yu Fang, Dieter Fox, Fengyuan Hu, Spencer Huang, et al. Gr00t n1: An open foundation model for generalist humanoid robots.arXiv preprint arXiv:2503.14734, 2025
arXiv 2025
-
[6]
Moto: Latent motion token as the bridging language for learning robot manipulation from videos
Yi Chen, Yuying Ge, Weiliang Tang, Yizhuo Li, Yixiao Ge, Mingyu Ding, Ying Shan, and Xihui Liu. Moto: Latent motion token as the bridging language for learning robot manipulation from videos. InProceedings of the IEEE/CVF International Conference on Computer Vision (ICCV), pages 19752–19763, 2025
work page 2025
-
[7]
TraceVLA: Visual trace prompting enhances spatial-temporal awareness for generalist robotic policies
Ruijie Zheng, Yongyuan Liang, Shuaiyi Huang, Jianfeng Gao, Hal Daumé III, Andrey Kolobov, Furong Huang, and Jianwei Yang. TraceVLA: Visual trace prompting enhances spatial-temporal awareness for generalist robotic policies. InThe Thirteenth International Conference on Learning Representations, 2025
work page 2025
-
[8]
GraspVLA: a grasping foundation model pre-trained on billion-scale synthetic action data
Shengliang Deng, Mi Yan, Songlin Wei, Haixin Ma, Yuxin Yang, Jiayi Chen, Zhiqi Zhang, Taoyu Yang, Xuheng Zhang, Heming Cui, Zhizheng Zhang, and He Wang. GraspVLA: a grasping foundation model pre-trained on billion-scale synthetic action data. InProceedings of The 9th Conference on Robot Learning, pages 1004–1029. PMLR, 2025
work page 2025
Show all 52 references
-
[9]
Hi Robot: Open-ended instruction following with hierarchical vision- language-action models
Lucy Xiaoyang Shi, brian ichter, Michael Robert Equi, Liyiming Ke, Karl Pertsch, Quan Vuong, James Tanner, Anna Walling, Haohuan Wang, Niccolo Fusai, Adrian Li-Bell, Danny Driess, Lachy Groom, Sergey Levine, and Chelsea Finn. Hi Robot: Open-ended instruction following with hie...
2025
-
[10]
Libero-plus: In-depth robustness analysis of vision-language-action models.arXiv preprint arXiv:2510.13626, 2025
Senyu Fei, Siyin Wang, Junhao Shi, Zihao Dai, Jikun Cai, Pengfang Qian, Li Ji, Xinzhe He, Shiduo Zhang, Zhaoye Fei, et al. Libero-plus: In-depth robustness analysis of vision-language-action models.arXiv preprint arXiv:2510.13626, 2025
-
[11]
Cast: Counterfactual labels improve instruction following in vision-language-action models.arXiv preprint arXiv:2508.13446, 2025
Catherine Glossop, William Chen, Arjun Bhorkar, Dhruv Shah, and Sergey Levine. Cast: Counterfactual labels improve instruction following in vision-language-action models.arXiv preprint arXiv:2508.13446, 2025
2025 arXiv
-
[12]
Counterfactual vla: Self-reflective vision-language-action model with adaptive reasoning.arXiv preprint arXiv:2512.24426, 2025
Zhenghao Peng, Wenhao Ding, Yurong You, Yuxiao Chen, Wenjie Luo, Thomas Tian, Yulong Cao, Apoorva Sharma, Danfei Xu, Boris Ivanovic, et al. Counterfactual vla: Self-reflective vision-language-action model with adaptive reasoning.arXiv preprint arXiv:2512.24426, 2025. 10
2025
-
[13]
Classifier-free diffusion guidance.arXiv preprint arXiv:2207.12598, 2022
Jonathan Ho and Tim Salimans. Classifier-free diffusion guidance.arXiv preprint arXiv:2207.12598, 2022
2022 arXiv
-
[14]
OpenVLA: An open-source vision-language-action model.arXiv preprint arXiv:2406.09246, 2024
Moo Jin Kim, Karl Pertsch, Siddharth Karamcheti, Ted Xiao, Ashwin Balakrishna, Suraj Nair, Rafael Rafailov, Ethan Foster, Grace Lam, Pannag Sanketi, Quan Vuong, Thomas Kollar, Benjamin Burchfiel, Russ Tedrake, Dorsa Sadigh, Sergey Levine, Percy Liang, and Chelsea Finn. OpenVLA...
2024 arXiv
-
[15]
SimpleVLA-RL: Scaling VLA training via reinforcement learning
Haozhan Li, Yuxin Zuo, Jiale Yu, Yuhao Zhang, Yang Zhaohui, Kaiyan Zhang, Xuekai Zhu, Yuchen Zhang, Tianxing Chen, Ganqu Cui, Dehui Wang, Dingxiang Luo, Yuchen Fan, Youbang Sun, Jia Zeng, Jiangmiao Pang, Shanghang Zhang, Yu Wang, Yao Mu, Bowen Zhou, and Ning Ding. SimpleVLA-RL...
2026
-
[16]
SmolVLA: A vision-language- action model for affordable and efficient robotics.arXiv preprint arXiv:2506.01844, 2025
Mustafa Shukor, Dana Aubakirova, Francesco Capuano, Pepijn Kooijmans, Steven Palma, Adil Zouitine, Michel Aractingi, Caroline Pascal, Martino Russi, Andres Marafioti, et al. SmolVLA: A vision-language- action model for affordable and efficient robotics.arXiv preprint arXiv:250...
2025 arXiv
-
[17]
π0.5: a vision-language-action model with open-world generalization.arXiv preprint arXiv:2504.16054, 2025
Physical Intelligence, Kevin Black, Noah Brown, James Darpinian, Karan Dhabalia, Danny Driess, Adnan Esmail, Michael Equi, Chelsea Finn, Niccolo Fusai, et al. π0.5: a vision-language-action model with open-world generalization.arXiv preprint arXiv:2504.16054, 2025
2025 arXiv
-
[18]
Fine-tuning vision-language-action models: Optimizing speed and success.arXiv preprint arXiv:2502.19645, 2025
Moo Jin Kim, Chelsea Finn, and Percy Liang. Fine-tuning vision-language-action models: Optimizing speed and success.arXiv preprint arXiv:2502.19645, 2025
2025 arXiv
-
[19]
LoRA: Low-rank adaptation of large language models
Edward J Hu, yelong shen, Phillip Wallis, Zeyuan Allen-Zhu, Yuanzhi Li, Shean Wang, Lu Wang, and Weizhu Chen. LoRA: Low-rank adaptation of large language models. InInternational Conference on Learning Representations, 2022
2022
-
[20]
Vla-adapter: An effective paradigm for tiny-scale vision-language-action model
Yihao Wang, Pengxiang Ding, Lingxiao Li, Can Cui, Zirui Ge, Xinyang Tong, Wenxuan Song, Han Zhao, Wei Zhao, Pengxu Hou, et al. Vla-adapter: An effective paradigm for tiny-scale vision-language-action model. InProceedings of the AAAI Conference on Artificial Intelligence, pages...
2026
-
[21]
Modality-experts coordinated adaptation for large multimodal models.Science China Information Sciences, 67(12):220107, 2024
Yan Zhang, Zhong Ji, Yanwei Pang, Jungong Han, and Xuelong Li. Modality-experts coordinated adaptation for large multimodal models.Science China Information Sciences, 67(12):220107, 2024
2024
-
[22]
Reconvla: Reconstructive vision-language-action model as effective robot perceiver
Wenxuan Song, Ziyang Zhou, Han Zhao, Jiayi Chen, Pengxiang Ding, Haodong Yan, Yuxin Huang, Feilong Tang, Donglin Wang, and Haoang Li. Reconvla: Reconstructive vision-language-action model as effective robot perceiver. InProceedings of the AAAI Conference on Artificial Intellig...
2026
-
[23]
Ren, Homer Walke, Quan Vuong, Lucy Xiaoyang Shi, and Sergey Levine
Danny Driess, Jost Tobias Springenberg, brian ichter, LILI YU, Adrian Li-Bell, Karl Pertsch, Allen Z. Ren, Homer Walke, Quan Vuong, Lucy Xiaoyang Shi, and Sergey Levine. Knowledge insulating vision- language-action models: Train fast, run fast, generalize better. InThe Thirty-...
2025
-
[24]
Mole-vla: Dynamic layer-skipping vision language action model via mixture-of-layers for efficient robot manipulation
Rongyu Zhang, Menghang Dong, Yuan Zhang, Liang Heng, Xiaowei Chi, Gaole Dai, Li Du, Dan Wang, Yuan Du, and Shanghang Zhang. Mole-vla: Dynamic layer-skipping vision language action model via mixture-of-layers for efficient robot manipulation. InProceedings of the AAAI Conferenc...
2026
-
[25]
Spec-vla: speculative decoding for vision-language-action models with relaxed acceptance
Songsheng Wang, Rucheng Yu, Zhihang Yuan, Chao Yu, Feng Gao, Yu Wang, and Derek F Wong. Spec-vla: speculative decoding for vision-language-action models with relaxed acceptance. InProceedings of the 2025 Conference on Empirical Methods in Natural Language Processing, pages 269...
2025
-
[26]
CogVLA: Cognition-aligned vision-language- action models via instruction-driven routing & sparsification
Wei Li, Renshan Zhang, Rui Shao, Jie He, and Liqiang Nie. CogVLA: Cognition-aligned vision-language- action models via instruction-driven routing & sparsification. InThe Thirty-ninth Annual Conference on Neural Information Processing Systems, 2025
2025
-
[27]
Denoising diffusion probabilistic models
Jonathan Ho, Ajay Jain, and Pieter Abbeel. Denoising diffusion probabilistic models. InAdvances in Neural Information Processing Systems, pages 6840–6851, 2020
2020
-
[28]
Diffusion policy: Visuomotor policy learning via action diffusion.The International Journal of Robotics Research, 44(10-11):1684–1704, 2025
Cheng Chi, Zhenjia Xu, Siyuan Feng, Eric Cousineau, Yilun Du, Benjamin Burchfiel, Russ Tedrake, and Shuran Song. Diffusion policy: Visuomotor policy learning via action diffusion.The International Journal of Robotics Research, 44(10-11):1684–1704, 2025
2025
-
[29]
Scalable diffusion models with transformers
William Peebles and Saining Xie. Scalable diffusion models with transformers. InProceedings of the IEEE/CVF International Conference on Computer Vision, pages 4195–4205, 2023. 11
2023
-
[30]
Yaron Lipman, Ricky T. Q. Chen, Heli Ben-Hamu, Maximilian Nickel, and Matthew Le. Flow matching for generative modeling. InThe Eleventh International Conference on Learning Representations, 2023
2023
-
[31]
Flow straight and fast: Learning to generate and transfer data with rectified flow
Xingchao Liu, Chengyue Gong, and qiang liu. Flow straight and fast: Learning to generate and transfer data with rectified flow. InThe Eleventh International Conference on Learning Representations, 2023
2023
-
[32]
RDT-1b: a diffusion foundation model for bimanual manipulation
Songming Liu, Lingxuan Wu, Bangguo Li, Hengkai Tan, Huayu Chen, Zhengyi Wang, Ke Xu, Hang Su, and Jun Zhu. RDT-1b: a diffusion foundation model for bimanual manipulation. InThe Thirteenth International Conference on Learning Representations, 2025
2025
-
[33]
One-step diffusion policy: Fast visuomotor policies via diffusion distillation
Zhendong Wang, Max Li, Ajay Mandlekar, Zhenjia Xu, Jiaojiao Fan, Yashraj Narang, Linxi Fan, Yuke Zhu, Yogesh Balaji, Mingyuan Zhou, Ming-Yu Liu, and Yu Zeng. One-step diffusion policy: Fast visuomotor policies via diffusion distillation. InForty-second International Conference...
2025
-
[34]
π0: A vision-language-action flow model for general robot control.arXiv preprint arXiv:2410.24164, 2024
Kevin Black, Noah Brown, Danny Driess, Adnan Esmail, Michael Equi, Chelsea Finn, Niccolo Fusai, Lachy Groom, Karol Hausman, Brian Ichter, et al. π0: A vision-language-action flow model for general robot control.arXiv preprint arXiv:2410.24164, 2024
-
[35]
Hybridvla: Collaborative diffusion and autoregression in a unified vision-language-action model.arXiv preprint arXiv:2503.10631, 2025
Jiaming Liu, Hao Chen, Pengju An, Zhuoyang Liu, Renrui Zhang, Chenyang Gu, Xiaoqi Li, Ziyu Guo, Sixiang Chen, Mengzhen Liu, et al. Hybridvla: Collaborative diffusion and autoregression in a unified vision-language-action model.arXiv preprint arXiv:2503.10631, 2025
2025 arXiv
-
[36]
Toward causal representation learning.Proceedings of the IEEE, 109(5):612– 634, 2021
Bernhard Schölkopf, Francesco Locatello, Stefan Bauer, Nan Rosemary Ke, Nal Kalchbrenner, Anirudh Goyal, and Yoshua Bengio. Toward causal representation learning.Proceedings of the IEEE, 109(5):612– 634, 2021
2021
-
[37]
Robust agents learn causal world models
Jonathan Richens and Tom Everitt. Robust agents learn causal world models. InThe Twelfth International Conference on Learning Representations, 2024
2024
-
[38]
Causalworld: A robotic manipulation benchmark for causal structure and transfer learning
Ossama Ahmed, Frederik Träuble, Anirudh Goyal, Alexander Neitz, Manuel Wuthrich, Yoshua Bengio, Bernhard Schölkopf, and Stefan Bauer. Causalworld: A robotic manipulation benchmark for causal structure and transfer learning. InInternational Conference on Learning Representations, 2021
2021
-
[39]
CDP: Towards robust autoregressive visuomotor policy learning via causal diffusion
Jiahua Ma, Yiran Qin, Yixiong Li, Xuanqi Liao, Yulan Guo, and Ruimao Zhang. CDP: Towards robust autoregressive visuomotor policy learning via causal diffusion. InProceedings of the 9th Conference on Robot Learning (CoRL), pages 4190–4205. PMLR, 2025
2025
-
[40]
When vision overrides language: Evaluating and mitigating counterfactual failures in vlas.arXiv preprint arXiv:2602.17659, 2026
Yu Fang, Yuchun Feng, Dong Jing, Jiaqi Liu, Yue Yang, Zhenyu Wei, Daniel Szafir, and Mingyu Ding. When vision overrides language: Evaluating and mitigating counterfactual failures in vlas.arXiv preprint arXiv:2602.17659, 2026
2026 arXiv
-
[41]
Libero: Benchmarking knowledge transfer for lifelong robot learning
Bo Liu, Yifeng Zhu, Chongkai Gao, Yihao Feng, Qiang Liu, Yuke Zhu, and Peter Stone. Libero: Benchmarking knowledge transfer for lifelong robot learning. InThe Thirty-seventh Annual Conference on Neural Information Processing Systems, 2023
2023
-
[42]
DreamVLA: A vision-language-action model dreamed with comprehensive world knowledge
Wenyao Zhang, Hongsi Liu, Zekun Qi, Yunnan Wang, XinQiang Yu, Jiazhao Zhang, Runpei Dong, Jiawei He, He Wang, Zhizheng Zhang, Li Yi, Wenjun Zeng, and Xin Jin. DreamVLA: A vision-language-action model dreamed with comprehensive world knowledge. InThe Thirty-ninth Annual Confere...
2025
-
[43]
X-VLA: Soft-prompted transformer as scalable cross-embodiment vision-language-action model
Jinliang Zheng, Jianxiong Li, Zhihao Wang, Dongxiu Liu, Xirui Kang, Yuchun Feng, Yinan Zheng, Jiayin Zou, Yilun Chen, Jia Zeng, Tai Wang, Ya-Qin Zhang, Jingjing Liu, and Xianyuan Zhan. X-VLA: Soft-prompted transformer as scalable cross-embodiment vision-language-action model. ...
2026
-
[44]
NORA: A small open-sourced generalist vision language action model for embodied tasks.arXiv preprint arXiv:2504.19854, 2025
Chia-Yu Hung, Qi Sun, Pengfei Hong, Amir Zadeh, Chuan Li, U Tan, Navonil Majumder, Soujanya Poria, et al. NORA: A small open-sourced generalist vision language action model for embodied tasks.arXiv preprint arXiv:2504.19854, 2025
2025 arXiv
-
[45]
Worldvla: Towards autoregressive action world model.arXiv preprint arXiv:2506.21539, 2025
Jun Cen, Chaohui Yu, Hangjie Yuan, Yuming Jiang, Siteng Huang, Jiayan Guo, Xin Li, Yibing Song, Hao Luo, Fan Wang, et al. Worldvla: Towards autoregressive action world model.arXiv preprint arXiv:2506.21539, 2025
2025 arXiv
-
[46]
UniVLA: Learning to act anywhere with task-centric latent actions.arXiv preprint arXiv:2505.06111, 2025
Qingwen Bu, Yanting Yang, Jisong Cai, Shenyuan Gao, Guanghui Ren, Maoqing Yao, Ping Luo, and Hongyang Li. UniVLA: Learning to act anywhere with task-centric latent actions.arXiv preprint arXiv:2505.06111, 2025. 12
2025 arXiv
-
[47]
Fast: Efficient action tokenization for vision-language-action models.arXiv preprint arXiv:2501.09747, 2025
Karl Pertsch, Kyle Stachowicz, Brian Ichter, Danny Driess, Suraj Nair, Quan Vuong, Oier Mees, Chelsea Finn, and Sergey Levine. Fast: Efficient action tokenization for vision-language-action models.arXiv preprint arXiv:2501.09747, 2025
2025 arXiv
-
[48]
Chance- constrained flow matching for high-fidelity constraint-aware generation.arXiv preprint arXiv:2509.25157, 2025
Jinhao Liang, Yixuan Sun, Anirban Samaddar, Sandeep Madireddy, and Ferdinando Fioretto. Chance- constrained flow matching for high-fidelity constraint-aware generation.arXiv preprint arXiv:2509.25157, 2025
2025
-
[49]
Ddat: Diffusion policies enforcing dynamically admissible robot trajectories.arXiv preprint arXiv:2502.15043, 2025
Jean-Baptiste Bouvier, Kanghyun Ryu, Kartik Nagpal, Qiayuan Liao, Koushil Sreenath, and Negar Mehr. Ddat: Diffusion policies enforcing dynamically admissible robot trajectories.arXiv preprint arXiv:2502.15043, 2025
2025 arXiv
-
[50]
LeRobot: An open- source library for end-to-end robot learning
Remi Cadene, Simon Alibert, Francesco Capuano, Michel Aractingi, Adil Zouitine, Pepijn Kooijmans, Jade Choghari, Martino Russi, Caroline Pascal, Steven Palma, Dana Aubakirova, Mustafa Shukor, Jess Moss, Alexander Soare, Quentin Lhoest, Quentin Gallouédec, and Thomas Wolf. LeRo...
2026
-
[51]
put ... on
Xueyang Zhou, Yangming Xu, Guiyao Tie, Yongchao Chen, Guowen Zhang, Duanfeng Chu, Pan Zhou, and Lichao Sun. Libero-pro: Towards robust and fair evaluation of vision-language-action models beyond memorization.arXiv preprint arXiv:2510.03827, 2025. 13 A Technical appendices and ...
-
[52]
remove the cuboid from the blue plate
combined with drastic camera angle shifts), occasionally causing the vision encoder to lose spatial tracking. In the real-world deployments, execution failures are predominantly observed under severe 21 Pick up the black bowl on the wooden cabinet and place it on the plate Cam...
Reviewed August 7, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.