Getting spatial detail into a robot policy sounds like it should require a billion-parameter vision-language model. It doesn't.
Most visuomotor policies either compress every observation into a single pooled vector or CLS token, or train a visual backbone from scratch. Both throw away the fine-grained spatial detail precise manipulation actually needs, and the second throws away large-scale visual pre-training with it. The policies that do keep the detail, large VLAs, inherit the full cost of a billion-parameter backbone and inference too slow for reactive control. That trade is the one manipulation teams hit every day.
Patch Policy doesn't compress. It takes the dense patch features a pretrained Vision Transformer already produces, frozen, no fine-tuning, and feeds them straight into any transformer-based policy head.
What makes this work is that spatial attention and temporal causality stay separate. Full bidirectional attention within a frame lets the model see every patch at once. Causal masking across frames keeps the sequence honest about what happened before what. Nobody flattens that structure into one token and hopes precision survives downstream.
The numbers. Across four simulated and three real-world suites, dense patch features beat global-pooled baselines by 40 percent relative, regardless of the policy architecture on top. Against a fine-tuned OpenVLA-OFT, Patch Policy comes out 18 percent ahead using roughly 0.7 percent of the parameters, at 11 milliseconds inference. Swap the patch features for pooled or convolutionally compressed ones and performance drops across the board. Same policy head, same training data, worse representation.
I read this as a representation result. A bigger backbone buys broad coverage. It doesn't buy back the spatial detail that pooling throws away, and that's one more place where adding parameters isn't the lever people assume it is. Precision wants the patch structure preserved, not compressed and relearned three layers downstream.
Worth your time if you're deciding what to fine-tune, or whether you need to fine-tune anything at all.
Source: https://lnkd.in/gbRve-Zn
Paper: https://lnkd.in/gXTzERiu
#Robotics #PhysicalAI #RobotLearning
Prior policies sit at two extremes. Classical-style policies still treat vision as a compact state vector, pooling each frame into one global token and discarding spatial detail. VLAs do use dense patch features, but only by coupling them to a billion-parameter VLM that's heavy to train and slow to run. It remains unclear whether it's the visual patch features or the VLM doing the work.