Meta researchers have published a preprint that treats multimodal training as an engineering problem with knowable rules rather than a black box. The paper, titled “Towards Physics of Multimodal Pretraining,” argues that many teams building models that read text, understand images, and generate images are combining those skills in the wrong order. That matters because multimodal training runs now absorb some of the largest compute budgets in the industry, and a poor architectural choice can waste months of cluster time before anyone notices.

When a model learns language, image understanding, and image generation together, those skills can either reinforce each other or compete for the same parameters. Researchers describe the helpful outcome as synergy and the harmful one as interference. The paper’s central claim is that which outcome you get is not random. It depends on how complex the training data is and on specific choices baked into the model’s architecture.

On architecture, the researchers report that giving each modality its own feed-forward layers, while letting every modality share the same attention and normalization layers, reliably produced synergy instead of competition. That pattern held across different designs of visual tokenizer, the component that converts pixels into a format the model can process next to text.

Timing mattered as much as architecture. Models that mixed modalities from the very first training step outperformed models that trained on text first and aligned vision later, or trained each modality in sequence. Delayed integration produced a specific failure the researchers call vision laziness: the model learns to guess an image’s content from language patterns instead of actually processing the pixels, because the language pathway already works well enough to fake it by the time vision arrives.

The paper’s most consequential practical result is a set of training recipes that reach strong image-generation quality using roughly 5 percent of the compute a conventional approach would require. That figure matters beyond this one paper. Multimodal pretraining is where frontier labs now direct the largest share of their compute spend, so a recipe that reaches comparable quality for a twentieth of the cost changes who can afford to train a capable multimodal model in the first place, not just how well the resulting model performs.

To check that these patterns were not artifacts of small experiments, the team validated them by training several 13.5 billion parameter mixture-of-experts (MoE) models on 2 trillion tokens. MoE architectures activate only a portion of their parameters per input, which lowers cost relative to a dense model of equivalent size. The paper reports the same patterns held at that larger scale, though the abstract does not include benchmark comparisons against other labs’ multimodal systems.

This is a preprint posted to arXiv, not a peer-reviewed or independently replicated study. The findings come from the authors’ own controlled experiments on synthetic and real-world data, and the abstract states relative comparisons between training strategies rather than naming specific external benchmark scores.

Teams currently budgeting a multimodal pretraining run should treat modality-unification timing and feed-forward layer allocation as architecture decisions worth testing up front, not details to patch after a run underperforms.

Source: arXiv preprint arXiv

.05000, submitted August 5, 2026 and revised August 6, 2026.