> Paper: Borrowed Geometry: Computational Reuse of Frozen Text-Pretrained Transformer Weights Across Modalities > Author: Abay Bektursun > arXiv: 2605.00333 | 2026-04-29
The Waste of Training Each Modality From Scratch
Traditionally, AI development trains a separate model for every modality: text models pretrained on text, vision models on images, and robot models on manipulation data—all from scratch with enormous resource costs. The dream motivating this work is to take frozen text-pretrained weights, attach a thin trainable interface, and transfer that knowledge to new modalities cheaply and efficiently.
The Core Idea and Results
Central claim: Frozen Gemma 4 31B text-pretrained weights, unmodified, can transfer to new modalities such as robot manipulation via thin trainable interfaces.
Key results:
- Robot manipulation: On OGBench scenarios, frozen text weights plus a thin interface outperform the published GCIQL method by +4.33 points, on tasks the robot has never seen.
- Reinforcement learning: On D4RL Walker2d, the approach matches Decision Transformer while using only 0.43x the trainable parameters, compressed into 5-layer slices.
- Associative memory: Used as "the cleanest probe" to validate cross-modal transfer, supported by theoretical analysis.
- Text pretraining learns general structure—relations, logic, patterns—not just vocabulary.
- Freezing most weights and training only a thin interface saves resources while performing well.
- Theoretically, different modalities share a common "geometry" that pretraining captures, offering a new perspective on cross-modal learning.
Key insight: The "geometry" learned during text pretraining is not just linguistic knowledge but a more general representation—one that can be borrowed by other modalities. The analogy: someone who has learned many languages discovers the logical structure behind them and can transfer it to programming or mathematics—not the knowledge itself, but the "way of thinking."
Why Can Frozen Weights Work Cross-Modality?
Traditional view: Text weights only understand text; vision weights only understand images; new modalities require new pretraining.
Borrowed Geometry's finding:
Takeaway
The post closes with a Feynman-style reflection: "knowing the name of something" differs from "understanding something." Likewise, text pretraining doesn't just teach a model to chat—it teaches it the *structure of thinking*, and that structure is cross-modal: the causality and sequential planning needed for robot manipulation share the same geometry as logical reasoning and narrative structure in text.
Questions worth asking when training multimodal models: 1. Am I training from scratch for every modality? 2. Can frozen weights transfer? 3. Is a thin interface enough? 4. What general structure did pretraining actually learn?
Borrowed Geometry reminds us: the most efficient learning is not reinvention, but borrowing. The deepest structures in representational geometry are a cross-modal universal language.