Introduction
This post reviews the November 2025 Meta AI preprint "Back to Basics: Unifying Denoising and Generation via Manifold-Aware Signal Estimation" (arXiv:2511.13720) by Kaiming He and colleagues. Its central message: instead of predicting added noise (the DDPM convention since 2020), generative models should return to the classical signal-processing goal of directly estimating the clean signal.
Key points
- Noise prediction is a detour. Since DDPM, models learn to predict the noise ε added to images, then indirectly reconstruct x₀. The paper argues this violates the signal-processing principle of direct estimation and ignores the manifold hypothesis.
- The manifold hypothesis. Natural images lie on a thin, low-dimensional surface within high-dimensional pixel space, whereas noise fills the entire volume. Predicting noise forces the model to learn an enormous space of high-dimensional noise variants; predicting the clean image keeps the model on the low-dimensional manifold.
- The JiT architecture (Just image Transformers). A plain Transformer encoder implements the direct mapping:
- Large patches work—inverting convention. Noise-prediction models need small patches (4×4, 8×8) and degrade with larger ones; JiT thrives with large patches (16×16, 32×32) because clean-signal prediction preserves global semantic structure rather than pixel-level noise detail.
- Empirical results (as summarized in the post):
- Scaling-law reversal. Because large patches reduce sequence length, attention cost grows with patch count rather than pixel count, making high-resolution generation far more memory-friendly than diffusion baselines.
- Only class-conditional generation is tested; text conditioning (CLIP-style cross-attention) is unexplored.
- Deterministic sampling may need more steps to refine fine details; distillation techniques (e.g., consistency-style methods) could compress steps.
- Generalization beyond images (audio, text, video) remains unverified; the manifold assumption may not hold for all data types.
- The paper concedes noise prediction's variance-injection advantage for stochastic/creative sampling; hybrid noise+signal prediction could combine strengths.
trained with an MSE loss \(L = ||x_0 - \hat{x}_0||^2\) and sampled via deterministic DDIM-style updates. No U-Net, pretraining, codebooks, or auxiliary losses are needed.
| Resolution | Patch | FID | IS | Params | |---|---|---|---|---| | 256×256 | 16×16 | 2.5 | 210+ | ~300M | | 256×256 | 32×32 | 2.8 | 205+ | ~150M | | 512×512 | 32×32 | 3.0 | 200+ | ~500M | | 512×512 | 16×16 | 2.7 | 215+ | ~400M |
Noise-prediction baselines reportedly collapse at high resolution with large patches (FID > 10), while JiT remains stable.
JiT vs. traditional DDPM
| Aspect | DDPM (noise prediction) | JiT (clean-image prediction) | |---|---|---| | Target | Predict ε | Predict x₀ | | Manifold efficiency | High-dimensional; inefficient | Low-dimensional; efficient | | Patch size | Small patches required | Large patches beneficial | | Architecture | Complex (U-Net + attention) | Plain Transformer | | Sampling | Stochastic noise subtraction | Deterministic denoising steps | | ImageNet 256 FID | ~2–5 | ~2.5 | | High resolution | Memory-intensive | Scales well |
Limitations and open questions
Implications
The post situates JiT in Kaiming He's lineage of simplification (ResNet, MAE) and suggests impact on video generation (shared Transformer over spatiotemporal patches), simplified DiT/UViT-style architectures, faster training convergence, and democratized high-resolution generation for small teams. It frames the work as a philosophical bridge to classical compressed sensing and Bayesian estimation: generation as reconstruction from undersampled data.
References
1. Back to Basics: Unifying Denoising and Generation via Manifold-Aware Signal Estimation — https://arxiv.org/abs/2511.13720 2. Meta AI blog on diffusion fundamentals 3. NeurIPS 2025 discussions on manifold assumptions in generative models