JA EN
·★ MEMBER·PAPER·10 min read

Paper Deep-Dive: The 'Physics' of Multimodal Pretraining — Which Way Does Knowledge Actually Flow?

What happens when a single model learns text and images together from day one? A large-scale controlled study from Meta FAIR and collaborators maps the asymmetric flow of knowledge between modalities, the conditions for synergy, the 'vision laziness' caused by late integration, and a recipe that gets strong image generation from just 5% of the data budget.

ModalityimageTaskgeneration

Towards Physics of Multimodal Pretraining: Knowledge Flow, Modality Synergy, Early Unification, and Recipes

Primary source — what this article is built on

undefined2026-08-05undefined2026-08-13same month

Towards Physics of Multimodal Pretraining: Knowledge FlowJunlin Han, Shengbang Tong, David Fan et al. · 2026-08-05 · v2"arXiv:2608.05000Paper page·PDF
Modality SynergyModality Synergy
Early UnificationEarly Unification
https://arxiv.org/abs/2608.05000"and Recipes
undefined

Vision offers a critical axis for advancing foundation models, driving a shift towards natively unified multimodal pretraining. Despite this momentum, the design space and the fundamental mechanisms of how modalities interact during unified training remain underexplored. We provide empirical clarity through a systematic exploration of multimodal pretraining. Our controlled experiments on both synthetic and large-scale real-world datasets yield four key insights into the physics of multimodal pretraining: (i) Knowledge Flow: We disentangle how language, visual understanding, and visual generation transfer knowledge across modalities, revealing distinct patterns of influence and asymmetry; (ii) Synergy vs. Competition: We show that data "complexity" largely determines whether modalities are synergistic, identify architectural choices that promote synergy: such as shared attention and normalization with modality-specific feed-forward layers, and find that these behaviors generalize across different visual tokenizer designs; (iii) Early Unification: Unifying modalities from the very early stages and training them jointly is shown to be more effective than late alignment or sequential training. This process uncovers a vision laziness phenomenon, where delayed integration leads models to rely on language priors; (iv) Recipes: We derive efficient pretraining recipes that achieve strong generative performance using only 5% of the compute budget. These core findings are subsequently validated at scale by training multiple 13.5B MoE models on 2T tokens. We hope this study provides a principled foundation for understanding and scaling multimodal pretraining.


Teaching three subjects to one student

Imagine teaching one student three subjects at once: language, art appreciation (understanding images), and painting (generating images). Do the subjects reinforce each other, or do they fight over the same mental capacity? Does getting better at language make you a better painter? Does painting practice hurt reading comprehension?

This is exactly the question facing foundation models today. The field is shifting toward unified multimodal pretraining, where a single model learns text, image understanding, and image generation together from the very start. Yet how the modalities actually interact during training has mostly been guided by heuristics. This paper — a collaboration spanning Meta FAIR, Reality Labs, and Oxford — attacks the question the way a physicist would: with tightly controlled experiments that vary one factor at a time. The result is four empirical "laws" of multimodal pretraining plus practical recipes, and the authors validate the conclusions at scale by training multiple 13.5B-parameter MoE models on 2T tokens (§6.2).

The experimental setup: text and image tokens share one Transformer (§2)

The workhorse is a Llama-3-style decoder-only Transformer (1.5B parameters, 2.3B including modality-specific FFNs). Following the Transfusion framework, the model learns text via ordinary next-token prediction and image generation via flow matching — a cousin of diffusion that learns the "flow" carrying noise toward an image — both inside a single model (§2.1).

On the generation side, the network predicts the clean image x0x_0 directly from a noisy input, and that prediction is converted on the fly into a velocity (§2.1):

v=x0xt1tv = \frac{x_0 - x_t}{1 - t}
(1)

In plain words: vv is the speed and direction needed to travel from the current noisy image xtx_t to the predicted clean image x0x_0 in the remaining time 1t1-t. Here tt runs from 0 (pure noise) to 1 (finished image), and at every step the model outputs "which way to move, and how fast."

The crucial design point is that text tokens and image tokens mix inside the same attention mechanism. Attention weights are dot products between queries and keys, so the more the text and image representations "point the same way," the more information flows across the modality boundary. (If queries, keys, and dot products aren't second nature yet, Attention from Scratch builds that foundation.) Keep this dot-product intuition in mind — it underpins the synergy story later.

FIG 1How the angle between two vectors determines their dot product. In attention, a larger query–key dot product means more information flows. Text and image representations "aligning their direction" is the physical channel through which knowledge crosses modalities

Finding 1: knowledge flows mostly one way (§3.1)

The paper first measures, on real data (DCLM for language, roughly 350M image–text pairs for vision), what happens to each capability when you scale up one modality's data while holding everything else fixed. The outcome is a strikingly asymmetric picture.

So knowledge flows readily downstream — language → understanding → generation — with almost no backflow. This river-like structure is the spine of the whole paper.

Finding 2: whether transfer happens depends on the kind of concept (§3.2)

Real data entangles too many factors, so the paper turns to a controlled synthetic environment built on CLEVR (procedurally rendered scenes of simple objects) and performs surgical ablations: remove one specific concept from exactly one modality's training stream. For example, delete "yellow" from the generation data only, keep it in the understanding data, then ask the model to draw a yellow object (§3.2.1).

The results split cleanly along a conceptual hierarchy (§3.2.2):

The follow-up experiment is the most interesting part (§3.2.3). Even the colors and shapes that failed to transfer zero-shot leave something behind: when the missing concept is later reintroduced via fine-tuning, prior exposure through generation dramatically accelerates learning it for understanding (a gain in mean ac

What's behind this

§

Members-only from here

371 walkthroughs, 26 textbook chapters, 48 student units and 6 close readings — all included for $4.99/mo, with three new explainers every day. Cancel any time; access runs to the end of the period.

Already a member? Sign in to keep reading

References

  1. Junlin Han, Shengbang Tong, David Fan, Minghao Chen et al.. (2026-08-05) Towards Physics of Multimodal Pretraining: Knowledge Flow. "arXiv:2608.05000Paper page·PDF
  2. Modality Synergy. Modality Synergy
  3. Early Unification. Early Unification
  4. https://arxiv.org/abs/2608.05000". and Recipes

This article is written from the source paper above. Where they differ, the original is authoritative.

Comments

Sign in to comment