Teahose.
SIGN IN
NEW HERE — WHAT TEAHOSE DOES
We read the entire AI & tech firehose — so you don't have to.
PODPodcastsAll-In, No Priors, Acquired…
NEWNewslettersStratechery, Newcomer…
PAPPapersPhysical AI research
PHProduct Huntdaily launches
VCInvestor ScoutSequoia, a16z, Benchmark…
CLAUDE DISTILLS →
7 reads, 30 sec each — free, 6 AM ET.
+ a live graph of the companies, people & themes underneath.
HOME/ARXIV PHYSICAL AI RESEARCH/V-Link: Recovering Lost Visual R…
PAPR
// RESEARCH PAPER
ARXIV PHYSICAL AI RESEARCH

V-Link: Recovering Lost Visual Representations in Action DiT for Vision-Language-Action Models

DATE August 26, 2026SOURCE ARXIV PHYSICAL AI RESEARCHPARTICIPANTS YEHAO LU, XI LI, ET AL. (ARXIV PHYSICAL AI)ARXIV 2608.25308
// SUMMARY

1. Key Themes

The VL-to-A Transfer Bottleneck in Dual-System Architectures

Current state-of-the-art Vision-Language-Action (VLA) models like NVIDIA's GR00T N1.6 use a "dual-system" design: a large vision-language model (VLM) for understanding the scene, and a smaller, faster "action expert" (Action DiT) for generating robot movements. This paper reveals a critical flaw in how these two systems communicate. When the VLM passes its visual understanding to the action expert, it only sends the final layer of data. The paper shows this causes the action expert to lose access to crucial 3D geometric and 2D semantic information. As stated in the Abstract: "the action expert has limited access to the 3D geometric and 2D semantic information available in VLM features. This accessibility gap weakens perceptual grounding and limits performance on fine-grained robotic manipulation."

Forcing Spatial Grounding via Asymmetric Injection

V-Link solves this bottleneck by injecting specialized "Spatial" and "Semantic" queries into the action model. Instead of just passing a blob of final-layer data, V-Link forces the action model to explicitly condition its movements on 3D geometry. The paper notes that "Spatial Queries provide dedicated geometric conditioning for spatially grounded action generation" (Abstract). By separating these pathways, the system prevents the action model from ignoring 3D data, ensuring the robot actually understands the physical space it is operating in.

High-Performance Gains with Negligible Latency Cost

A major barrier to improving VLA models is the risk of slowing down inference, which breaks real-time control. V-Link achieves massive improvements in success rates—up to +31.2% in robustness benchmarks and +24% in real-world humanoid tasks—while adding virtually zero latency. The paper states: "These improvements incur only 1.58 ms of additional inference latency, from 43.21 ms to 44.79 ms, demonstrating substantial performance gains with minimal computational overhead" (Section I, Introduction). For operators, this means you can drastically improve manipulation precision without breaking your control loop frequency.

2. Contrarian Perspectives

Bigger VLMs or Better 3D Foundation Models Aren't the Silver Bullet

The conventional wisdom in Physical AI is that if your robot lacks spatial awareness, you should either scale up the vision-language model or bolt on a heavy 3D foundation model (like VGGT). This paper argues that is a waste of compute if the action model can't access the data. As noted in Section I: "richer VLM representations do not guarantee that the action expert can access the same perceptual information after VL-to-A transfer." The bottleneck isn't perception; it's the transfer of perception to action.

Action Models Take "Shortcuts" and Ignore 3D Geometry

Most robotics engineers assume that if 3D spatial data is available in the network, the action policy will use it to avoid collisions and grasp objects precisely. This paper proves otherwise. Under standard action-loss supervision, the action model finds it easier to just use 2D semantic cues (e.g., "the cup is there") rather than computing the 3D geometry (e.g., "the cup is 10cm away"). The paper states: "Action DiT to exploit an optimization shortcut, prioritizing semantic cues that rapidly reduce the action loss while underutilizing structurally critical 3D spatial cues" (Section I, Introduction). This means many existing robots are operating with a fundamentally flawed understanding of 3D space because their neural networks took the path of least resistance during training.

3. Companies Identified

NVIDIA

Creator of GR00T N1.6, the base model used and improved upon in this paper. NVIDIA's model is the industry standard, but this paper exposes a structural flaw in its VL-to-A transfer mechanism. Quote: "In representative models such as NVIDIA GR00T N1.6 [1], only the VLM’s final-layer features are transferred to the action expert." (Section I, Introduction)

AGIBOT

Creator of the A3 Ultra humanoid robot and the employer of several paper authors. AGIBOT provided the hardware for the real-world evaluation, demonstrating that the research has immediate commercial applicability for their humanoid platform. Quote: "On the AGIBOT A3 Ultra, V-Link further achieves gains of +20% and +24% on two real-world humanoid tasks." (Abstract)

Physical Intelligence (Pi)

Creators of the π0 and π0.5 models. They are referenced as key competitors in the benchmark tables. While π0.5 performs well on standard benchmarks, V-Link outperforms it significantly on robustness benchmarks like LIBERO-Plus. Quote: "π0.5 [7]... UniVLA [5]..." (Table I, Table II)

Xiaomi Robotics

Creators of the Xiaomi Robotics-0 model. Referenced as a competitor in the RoboTwin 2.0 benchmark table, where V-Link outperforms their average success rate (56.8% vs 50.8%). Quote: "Xiaomi Robotics-0 [29]" (Table III)

4. People Identified

Yehao Lu

Lead author, affiliated with Zhejiang University and AGIBOT. Notable for identifying the VL-to-A transfer bottleneck and designing the V-Link architecture during an internship at AGIBOT. Quote: "Work done as a research intern at AGIBOT." (Author footnote)

Xi Li

Corresponding author, affiliated with Zhejiang University. Notable for overseeing the research that challenges standard VLA architectural paradigms. Quote: "Xi Li1†" (Author list)

Jiarui Yang

Co-author, affiliated with HKUST (Guangzhou) and AGIBOT. Notable for contributing to the architectural design and diagnostic protocols used to uncover the representation accessibility gap. Quote: "Jiarui Yang2,4" (Author list)

5. Operating Insights

Audit Your Action Expert's Feature Utilization

CTOs should not assume their action policy is using all the visual data provided by their perception stack. You can use the diagnostic protocol from this paper to test your own models: freeze your VLM and action model features, attach lightweight depth and segmentation heads, and see if the action model can actually reconstruct the 3D scene. If it can't, your model is taking semantic shortcuts. Quote: "we freeze the GR00T N1.6 VLM and Action DiT features, attach lightweight depth-estimation and semantic-segmentation heads to these features, and optimize only the task heads under identical supervision." (Section I, Introduction)

Use Training-Only Auxiliary Heads to Specialize Representations

You can force your model to learn spatial representations during training without adding any inference overhead. V-Link uses depth and segmentation heads to specialize the Spatial and Semantic queries, but these heads are stripped out when deployed. This is a highly efficient way to bake geometric understanding into a lightweight action model. Quote: "At inference, the auxiliary heads are removed, and no depth or segmentation annotations are required." (Section III.B)

6. Overlooked Insights

The Severity of the Robustness Gap

The base GR00T model doesn't just perform slightly worse; it completely collapses under certain real-world distribution shifts, while V-Link holds up remarkably well. Specifically, under "Noise" shifts, GR00T N1.6 drops to a 27.4% success rate, while V-Link achieves 87.8%. This implies that standard VLA models are extremely brittle to visual noise because they lack the 3D geometric grounding to fall back on when 2D semantics are corrupted. Quote: "particularly large gains over GR00T N1.6 under noise (+60.4%), language (+47.3%), and lighting (+30.6%)." (Section IV.C)

Pseudo-GT Generation for Real-World Training

To train V-Link on real robots, the authors didn't need perfect human-annotated depth and segmentation maps. They used other models (GroundingDINO, SAM3, Lingbot-Depth) to generate "pseudo-ground truth" data, even filling in missing data from sensor dropouts. This is a highly practical insight for operators: you can use automated labeling pipelines to train spatial awareness in your VLA without manual annotation. Quote: "Lingbot-Depth [31] completes missing RGB-D depth caused by sensor dropouts and reflective surfaces, while GroundingDINO and SAM3 generate key-object segmentation pseudo-GT..." (Section IV.E)