Back to feed
News Story
SSignal85
机器之心
1 sources

Generative Models Can Now Be Trained End-to-End? The Key Is a For Loop

Researchers from UIUC and Harvard have proposed a new paradigm called Explorative Modeling (XM), which uses a simple for loop to generate multiple candidate samples during training and selects the one closest to real data for gradient updates, enabling end-to-end training of generative models and addressing exposure bias and mode blurring. This approach could enhance generative expressivity and reduce reliance on guidance techniques.

SynthePulse Insight · AI deep reading

End-to-End Training of Generative Models: How a For Loop Becomes the Third Scaling Axis

Version 1 · 1 source

UIUC and Harvard propose Explorative Modeling (XM), which uses a 3-5 line for loop to generate K candidates and train only the one closest to real data, aiming to solve the long-standing exposure bias and mode blurring in generative models, and validates 'exploration' as a third scaling axis independent of parameters and data.

  • XM generates K candidates during training, backpropagates only for the one closest to real data, implemented as a 3-5 line for loop.
  • Exploration gains scale with size: from 7% to 36% as data grows, from 13% to 23% as model grows, and efficiency gain more than doubles when compute triples.
  • Efficiency improvements are significant: FLOP efficiency up 4.1x, sample efficiency up 6.2x, parameter efficiency up 47%.
  • In image generation, XM pushes RAE recipe to ImageNet unguided FID 1.43, approaching state-of-the-art.
  • In robot control, Explorative Policy matches or exceeds Diffusion Policy with 100 forward passes in a single forward pass.
  • Authors acknowledge best-of-K is not new, contribution is clarifying its mechanism, and autoregressive language models remain challenging.
Open section navigationRoot of the Problem: The 'Averaging' Dilemma of Generative Models

Root of the Problem: The 'Averaging' Dilemma of Generative Models

Generative models struggle with end-to-end training because reconstruction loss averages over multiple valid targets, leading to 'mode blurring'—the optimal solution is precisely the least realistic answer. The paper points out that direct end-to-end regression predicts a single point in the middle of three clusters, blurs dog photos into a mess, and degenerates a sentence into repeated 'the'.

Existing models avoid mode blurring by decomposing the generation process (autoregressive predicts one element at a time, diffusion denoises a bit at a time), but this also makes training and inference sampling inconsistent, leading to exposure bias: each step's error feeds into the next, and inputs drift from the training distribution.

XM Mechanism: The For Loop of Explorative Modeling

XM's core is to decompose the training loop: each training step generates K candidates, trains only the one closest to real data, and backpropagates, implemented as a 3-5 line for loop. The authors use a dart metaphor: when allowed to guess K times and only the closest counts, the optimal strategy is to cover different landing spots, capturing multiple modes.

The paper proposes two exploration directions: Forward fixes the real target and searches for the closest in generation, favoring recall; Reverse fixes generation and searches for the closest in real data, favoring precision with almost no extra compute, but may collapse. They can be combined.

The Third Scaling Axis: Scale Benefits of Exploration

The authors add exploration to diffusion/flow models, Jumpy models, and masked diffusion language models, consistently seeing monotonic performance improvements across image, video, and language modalities. Key numbers: gains rise from 7% to 36% as data grows, from 13% to 23% as model grows, and efficiency gain more than doubles when compute triples.

In efficiency, exploration improves FLOP efficiency by 4.1x, sample efficiency by 6.2x, and parameter efficiency by 47%. In image generation, it pushes RAE recipe to ImageNet unguided FID 1.43. A Large model exploring 5 modes outperforms an XLarge model with 47% more parameters but no exploration.

The authors explain that at small scale, parameters and data are bottlenecks; as scale increases, generative expressiveness becomes the bottleneck, and exploration directly amplifies it. Given that real foundation model training compute is about four orders of magnitude higher than the paper's largest experiments, these numbers may be a lower bound on gains at larger scales.

End-to-End Generation and Robotics Applications

Applying XM as a standalone end-to-end model for robot control: in behavior cloning, Explorative Policy matches or exceeds Diffusion Policy with 100 forward passes in a single forward pass; in goal-oriented world modeling, Explorative World Model achieves better average performance with 16 to 256 times less inference compute than Diffuser.

The gap stems from diffusion models using hundreds of steps at inference for expressiveness, while XM shifts the cost to training-time exploration, requiring only one forward pass at inference. The authors choose to explore once during training rather than slowly decompose at inference.

Theoretical Background and Limitations

First author Alexi Gladstone previously led Energy-Based Transformers (EBT), which claimed to beat standard feedforward Transformer scaling curves on multiple dimensions for the first time. XM builds on the Mode Forcing theory by the authors and collaborators (Yilun Du and Heng Ji), and the paper admits that most results were predicted by theory before being verified by experiments.

The authors acknowledge that best-of-K is not new; it has been done before. The real contribution is clarifying that this simple loop directly amplifies generative expressiveness without decomposing the generation process. Limitations include: autoregressive language models remain the hardest, and pure end-to-end Forward XM is too expensive on extremely multi-modal distributions (like image generation).

Credibility boundary

This article is based on a report by Jiqizhixin on the paper; all numbers and conclusions are from that report and have not been independently verified against the original paper. Expressions like 'approaching state-of-the-art' are judgments by the authors or reporters, not independently verified.

Insight takeaway

XM uses a simple for loop to turn exploration into a third scaling axis for generative models, showing scale benefits in image, video, language, and robot control, but autoregressive language models remain a challenge, and best-of-K itself is not a new idea.

Primary report

机器之心

Primary source