The Ghost in the Noise: Why Independent Diffusion Models Dream the Same Dreams

A Random Matrix Theory Perspective on the Consistency of Diffusion Models

2026-02-01
Binxu Wang, Jacob Zavatone-Veth, Cengiz Pehlevan
Summary
Problem
Method
Results
Takeaways
Abstract

This paper investigates the remarkable consistency of diffusion models—where models trained on non-overlapping data splits generate nearly identical images from the same noise seed. The authors propose a Random Matrix Theory (RMT) framework to formalize this via a linear Gaussian lens, demonstrating that shared Gaussian statistics across splits predict generative stability.

TL;DR

Why do two diffusion models, trained on completely different sets of images, generate the exact same face when given the same random noise? This paper reveals that the answer lies in the spectral geometry of data. By applying Random Matrix Theory (RMT), the authors show that diffusion models are anchored by shared Gaussian statistics, behaving like a physical system where finite data "renormalizes" the noise level.

The Mystery of Generative Consistency

In the world of GANs and VAEs, the latent space is a hall of mirrors—arbitrary rotations mean that the same "seed" produces wildly different results across training runs. Diffusion models are different. They utilize a deterministic probability flow that seems to map noise to data in a remarkably stable way.

The authors noticed that this consistency isn't just a byproduct of deep learning magic; it's present even in linear Gaussian predictors. As shown in the motivation experiment, samples from disjoint splits are visually closer to each other than to their actual training neighbors, effectively ruling out simple memorization as the cause of similarity.

Motivating Observation

The Physics of Finite Data: Noise Renormalization

The core technical contribution is the use of Deterministic Equivalence (DE). In high dimensions, random empirical matrices (from finite data) can be replaced by deterministic surrogates.

1. The Renormalized Scale

When training with limited data, the model doesn't just see the true noise ; it sees a "renormalized" noise level . The authors use the Silverstein equation to show that .

  • Physical Intuition: Finite data acts as an additional ridge penalty. This causes the model to "overshrink" low-variance directions, treating subtle signals as noise and pulling them toward the dataset mean.

2. The Variance Law

Why do models disagree on some parts of an image but not others? The authors derive a variance formula that factorizes into three parts:

  • Anisotropy: Disagreement is highest in directions where the data variance matches the noise level.
  • Inhomogeneity: If a noise seed is far from the mean along a high-variance axis, there is more room for the splits to disagree.
  • Scaling: Disagreement vanishes at a rate of as the dataset grows.

Renormalization and Overshrinking

From Linear Theory to Deep Networks

The most impressive feat of this paper is validating these RMT results on state-of-the-art architectures like UNet and DiT.

The Generalization Transition

The authors identify two distinct phases in diffusion training:

  1. Memorization Phase (): The model simply reconstructs training samples. RMT does not apply here.
  2. Renormalization Phase (): The model begins to generalize. Here, the generated images strongly resemble the RMT-predicted linear solution.

As the dataset size grows, the deep networks converge toward the population linear predictor, confirming that the "ground truth" of these models is the underlying statistical structure of the data manifold.

Spectral Variance and Overshrinking

Critical Insights & Future Work

This work provides a principled baseline for reproducibility. It tells us that if two models aren't producing consistent results, it’s likely because their training sets don't share identical second-order moments.

Limitations:

  • The linear surrogate naturally underestimates the variability of highly non-linear, expressive models.
  • It does not yet account for specific architectural inductive biases (like the locality of CNNs vs. the global reach of Transformers).

The Bottom Line: Diffusion models are consistent because they are experts at extracting the stable spectral geometry of a distribution. The "noise" we give them is not just random—it is a coordinates system anchored by the covariance of the data itself.

Find Similar Papers

Try Our Examples

  • Find recent papers that analyze the transition between memorization and generalization in diffusion models using random feature models or neural tangent kernels.
  • Which original paper established the Silverstein equation and the Marchenko-Pastur law, and how does this paper's application to fractional matrix powers extend those classical RMT results?
  • Are there studies that apply Random Matrix Theory to investigate the latent space identifiability or consistency of Flow Matching models compared to traditional SDE-based diffusion?
Contents
The Ghost in the Noise: Why Independent Diffusion Models Dream the Same Dreams
1. TL;DR
2. The Mystery of Generative Consistency
3. The Physics of Finite Data: Noise Renormalization
3.1. 1. The Renormalized Scale
3.2. 2. The Variance Law
4. From Linear Theory to Deep Networks
4.1. The Generalization Transition
5. Critical Insights & Future Work