Explorative Modeling: Unlocking a Third Pretraining Axis and End-to-End Generation
Explorative Modeling (XM) reframes generative pretraining around a third scaling axis — exploration — alongside parameters and data. Instead of decomposing generation into many small steps (autoregressive tokens, diffusion denoising) to sidestep the many-valid-outputs averaging problem, XM decomposes training: at each step the model produces K candidate generations and the loss reinforces only the best-matching one, so predictions commit to individual modes rather than blurring them. Gains from exploration grow with scale (7%→36% as data scales, 13%→23% as parameters scale, doubling at 3× compute); adding K>1 exploration to near-SOTA image, video, and MDLM baselines improves data efficiency 6.2×, FLOP efficiency 4.1×, parameter efficiency 47%, and reaches 1.43 unguided FID on ImageNet. XMs also unlock end-to-end reconstructive generative modeling (no step decomposition at all), matching diffusion on control tasks with 16–256× fewer inference steps.
Key claims
Section titled “Key claims”- Exploration is a distinct pretraining scaling axis beyond parameters and data — gains grow monotonically with K and increase with scale rather than saturating: 7%→36% improvement as data scales, 13%→23% as parameters scale, and efficiency gains more than double when compute is tripled [Abstract, §Scaling].
- Adding exploration to near-SOTA image generation recipes lifts them to a near-state-of-the-art 1.43 FID on ImageNet without guidance, and improves data efficiency by 6.2×, FLOP efficiency by 4.1×, and parameter efficiency by 47% at matched targets [Abstract].
- Exploration composes with existing step-decomposed generative architectures — image DiTs, video generators, and Masked Diffusion Language Models (MDLMs) all improve monotonically with K; some video models improve by >20% and MDLMs benefit substantially [§Scaling across modalities, §Video and MDLM].
- End-to-end reconstructive XMs (no factoring of generation into steps) match diffusion on control tasks with 16–256× fewer inference steps — the first filed instance of a truly end-to-end generative model that is competitive with step-decomposed baselines on quantitative control benchmarks [Abstract, §End-to-end XMs].
- Exploration lets the training procedure trade compute for generalization, not just fit: because fitting the same input to many valid targets looks like noise to a K=1 model, K>1 lets each prediction commit to a mode rather than average, reducing memorization-like behavior [§Generalization].
- The step-decomposition of generation (AR next-token, diffusion denoising) and the training-decomposition of exploration are interchangeable solutions to the many-valid-outputs averaging problem, and the K→∞ end-to-end XM limit is the training-side dual of the fine-step diffusion limit [§Method, §End-to-end XMs].
Method
Section titled “Method”The core problem XM addresses is that in generative modeling a single input (a caption, a masking pattern, a partial context) typically has many valid outputs — “a dog” corresponds to billions of plausible images. A K=1 model trained with MSE-like objectives averages over all of them and predicts a blurry mean. Existing recipes sidestep this by factoring generation into fine-grained steps, each of which faces a smaller set of valid outputs: AR LMs predict one token at a time, diffusion denoises one small step at a time.
XM instead factors training. At each training step the model produces K candidate generations for a given input, matches each to the current target, and applies the gradient update only through the best-matching candidate. In the simplest case this is a for-loop over K forward passes plus argmin. K=1 recovers standard training (averaging blur); increasing K lets the model commit to individual modes.
XM applies in two settings. First, as a drop-in modification to existing step-decomposed generators (image DiTs, video models, MDLMs), where it acts as an additional pretraining scaling axis on top of the usual step-decomposition. Second, as the training regime for end-to-end reconstructive generative models, where generation is a single forward pass and step decomposition is dropped entirely — the K-candidate exploration in training is what replaces the fine-step factorization in inference.
Results
Section titled “Results”- ImageNet scaling. With exploration added to a near-SOTA image recipe, unguided FID reaches 1.43 on ImageNet — reported by the authors as near-state-of-the-art at parity [Abstract]. Data efficiency improves 6.2×, FLOP efficiency 4.1×, parameter efficiency 47% [Abstract].
- Exploration-scaling coefficients. Data-scaling gains from exploration climb 7% → 36% and parameter-scaling gains climb 13% → 23% as the corresponding axis grows; efficiency gains more than double when compute is tripled [Abstract, §Scaling].
- Cross-modality generality. Positive gains reported on image, video, and MDLM backbones; some video models improve by >20% and MDLMs are noted as substantially improved [§Scaling across modalities].
- End-to-end XMs. Match diffusion on unnamed control tasks with 16–256× fewer inference steps [Abstract]; the tweet thread frames this as end-to-end reconstructive generation with a single-forward- pass generator.
Why it’s interesting
Section titled “Why it’s interesting”Explorative Modeling stakes out a training-side axis that is orthogonal to almost everything currently on Diffusion training efficiency. The existing recipes on that page fall into six families — external-encoder alignment (REPA / RAE), internal self-distillation (SRA / Self-Flow), perceptual losses (PixelGen), latent design (UL), spatial token reduction (Foveated), and block-wise decoupling (DiffusionBlocks). None of them attack the many-valid-outputs averaging problem directly; XM does, and the reported 1.43 unguided ImageNet FID plus 4.1× FLOP efficiency puts it squarely on that Pareto frontier while operating on a different lever than any existing entry.
The end-to-end XM claim contrasts sharply with Equilibrium Matching: Generative Modeling with Implicit Energy-Based Models and Generative Modeling via Drifting (Yilun Du is a co-author of XM and Runqian Wang of EqM sits in an adjacent thread): EqM and Drifting Models also aim at faster / more direct generation, but they factor generation into gradient descent on an autonomous energy/velocity field. XM instead keeps a single-forward-pass generator and moves the load into training. If both directions hold, “how end-to- end is your generator” becomes a two-dimensional design space — degree of inference decomposition × degree of training decomposition — and Few-Step Generation (from scratch) should probably absorb XM alongside SoFlow / DriftWorld / A2A as a fourth from-scratch few-step recipe.
The exploration-as-third-axis framing also invites comparison with Inference-Time Scaling: PARL, RLM, and self-refining video sampling all trade inference compute for capability. XM trades training compute (K parallel generations per step) for downstream data / FLOP / parameter efficiency. The natural next question — whether train-time exploration K and test-time refinement axes compose — is not addressed in the announcement.
See also
Section titled “See also”- Diffusion training efficiency — XM adds an eighth axis (training-side candidate exploration) to the six-plus existing training-efficiency recipes; reports 4.1× FLOP and 6.2× data efficiency at near-SOTA ImageNet FID
- Few-Step Generation (from scratch) — end-to-end XMs match diffusion with 16–256× fewer inference steps, a from-scratch few-step recipe distinct from SoFlow’s solution-function, DriftWorld’s drifting, and A2A’s proprioceptive anchoring
- Inference-Time Scaling — XM is the training-side dual to the inference-side test-time-compute axes; whether K (train) composes with test-time refinement is untested
- Equilibrium Matching: Generative Modeling with Implicit Energy-Based Models — same “avoid step decomposition of generation” goal via an autonomous energy field; XM instead keeps the single-pass generator and moves the load into training exploration (co-author Yilun Du overlaps)
- Generative Modeling via Drifting — closest sibling in the “generator as autonomous field” direction; XM offers the training- side complement
- Self-Refining Video Sampling — inference-time iterative refinement of a pretrained flow-matching generator; XM’s training-time exploration is the dual move