Method · Diffusion-based synthesis
DMGD
DMGD: Train-Free Dataset Distillation with Semantic-Distribution Matching in Diffusion Models
Qichao Wang, Yunhong Lu, Hengyuan Cao, Junyi Zhang, Min Zhang
CVPR 2026 · first public 2026-05-05 · arXiv 2605.03877
In one paragraph
Proposes training-free Dual Matching Guided Diffusion: Semantic Matching via conditional-likelihood optimization removes the need for an auxiliary classifier, a dynamic guidance mechanism balances diversity against semantic alignment, and an optimal-transport-based Distribution Matching term aligns generated samples with the target distribution's structure, with two efficiency strategies (Distribution Approximate Matching, Greedy Progressive Matching); reports average accuracy gains of 2.1%, 5.4% and 2.4% on ImageNet-Woof, -Nette and -1K over fine-tuning-based diffusion methods.
Explained
What came before
Minimax fine-tunes a diffusion model per dataset for representativeness/diversity; D4M and MGD3 guide a frozen generator with clustering-derived prototypes or modes but treat each generated sample independently and (per this paper's critique) can overemphasize invalid modes; IGD adds a classifier trained on gradient trajectories for guidance, at the cost of extra training.
The problem
Diffusion-guided distillation methods either need an added fine-tuning stage (Minimax) or use clustering-based conditioning (D4M, MGD3) that neglects the interrelationships among the samples being generated for the same class, producing diversity deficiencies and, per the paper's mean-matching analysis, samples that over-concentrate near a class mean rather than covering the target distribution.
The idea
Guide an unmodified pretrained diffusion model (DiT-XL) with two decoupled, training-free signals computed at sampling time: a "Semantic Matching" term that staggers classifier-free-style soft-label guidance across the denoising trajectory (stochastic exploration, then dynamic soft-label guidance, then semantic refinement), and a "Distribution Matching" term that pulls the evolving synthetic set toward the target distribution's structure via an optimal-transport objective, made tractable with two approximations (K-means clustering of the target, and greedy progressive matching that freezes already generated samples so later ones are pushed to cover what is missing rather than collapsing to the mean).
How it works
Sampling proceeds in three guidance stages by timestep window (t>=45 stochastic exploration, t in [25,45] dynamic soft-label guidance with Gaussian-noised and cross-class-perturbed labels for diversity, t<=25 semantic refinement). A second guidance term adds the gradient of an optimal-transport distance $\nabla_{z_t}\mathcal{L}_{OT}(P_S^t,P_T)$ between the current synthetic latent distribution $P_S^t$ and the target $P_T$; computing this exactly over the full target set is replaced by (a) Distribution Approximate Matching, clustering the target into K=10 clusters per class to approximate $P_T$ cheaply, and (b) Greedy Progressive Matching, generating samples sequentially and freezing earlier ones so each new sample is guided toward the still-uncovered part of the distribution. Nothing is fine-tuned; the DiT backbone, VAE and any teacher/classifier are frozen. Only pixels (plus labels per the evaluation protocol) are stored as the distilled artifact.
Evidence
Hard-label protocol, ResNet10-AP (Table 1): ImageNet-Woof IPC10/50: 40.8+/-1.1 / 60.1+/-0.8 vs MGD3 40.4+/-1.9 / 56.5+/-0.8; ImageNet-Nette IPC10/50: 68.4+/-0.2 / 80.6+/-0.5 vs MGD3 66.4+/-2.4 / 79.5+/-1.3. Plugged onto Minimax's fine-tuned backbone (Minimax+Ours), Woof reaches 42.4+/-0.5 (IPC10) / 60.8+/-0.2 (IPC50). ImageNet-1K soft-label protocol, ResNet-18 (Table 2): IPC10/50: 46.3+/-0.8 / 61.4+/-0.6, vs RDED 42.0+/-0.2 (IPC10) and MGD3 60.2+/-0.1 (IPC50), Minimax 44.3+/-0.5 (IPC10); ResNet-101 IPC10/50: 50.6+/-1.2 / 68.4+/-0.4 vs RDED 48.3+/-1.0 (IPC10) / MGD3 67.7+/-0.4 (IPC50). D3HR, CaO2 and IGD are not included in the main numerical comparison tables (IGD is discussed only in related work, criticized for needing extra classifier-trajectory training); baselines are re-run under the paper's own hard-label/soft-label protocols on a shared DiT/ResNet10-AP or ResNet-18/101 setup rather than quoted verbatim from each source paper. Cost: Minimax's fine-tuning takes ~0.7 GPU-hours versus DMGD's Distribution Approximate Matching at 0.03s per class; a full ImageNet-Woof IPC50 set generates in 0.26 hours; per-image sampling cost is 1.65s vs the unguided DiT baseline's 1.49s. Ablation (Table 3, Woof): Semantic Matching alone 38.9+/-1.2 (IPC10) / 59.3+/-0.4 (IPC50); Distribution Matching alone 41.6+/-1.1 / 56.8+/-0.2; combined 40.8+/-1.1 / 60.1+/-0.8 -- showing SM dominates at low IPC (where per-sample semantic fidelity matters most) and DM dominates at high IPC (where distribution coverage matters most), and combining them is not simply additive.
Limitations
Stated: the paper's own limitations discussion is brief and mostly frames the per-image sampling overhead (1.65s vs 1.49s baseline) as the main cost of adding two guidance terms. Observed: no comparison to D3HR, CaO2 or IGD with numbers under a shared protocol, so its ranking against the inversion/latent-statistics and influence-guided branches of the family is untested; the OT-based Distribution Matching term still requires access to the full target dataset's latents at synthesis time (via K-means over real data), so it does not remove the family's general dependence on real-data statistics even though it removes fine-tuning; K=10 clusters and the timestep boundaries (25, 45) are fixed hyperparameters not shown to transfer across datasets without retuning.
Written by the atlas from the paper's full text. Check the paper for exact numbers.
Where it sits
- Diffusion-based synthesis (Generative priors)
- Setting: Image classification
Design choices
| Prior / networks used | diffusion |
| Optimization regime | training-free |
| What is stored | pixels |
| Largest scale evaluated | imagenet-subsets, imagenet-1k |
Builds on
Abstract (verbatim from arXiv)
Dataset distillation enables efficient training by distilling the information of large-scale datasets into significantly smaller synthetic datasets. Diffusion based paradigms have emerged in recent years, offering novel perspectives for dataset distillation. However, they typically necessitate additional fine-tuning stages, and effective guidance mechanisms remain underexplored. To address these limitations, we rethink diffusion based dataset distillation and propose a Dual Matching Guided Diffusion (DMGD) framework, centered on efficient training-free guidance. We first establish Semantic Matching via conditional likelihood optimization, eliminating the need for auxiliary classifiers. Furthermore, we propose a dynamic guidance mechanism that enhances the diversity of synthetic data while maintaining semantic alignment. Simultaneously, we introduce an optimal transport (OT) based Distribution Matching approach to further align with the target distribution structure. To ensure efficiency, we develop two enhanced strategies for diffusion based framework: Distribution Approximate Matching and Greedy Progressive Matching. These strategies enable effective distribution matching guidance with minimal computational overhead. Experimental results on ImageNet-Woof, ImageNet-Nette, and ImageNet-1K demonstrate that our training-free approach achieves significant improvements, outperforming state-of-the-art (SOTA) methods requiring additional fine-tuning by average accuracy gains of 2.1%, 5.4%, and 2.4%, respectively.
BibTeX (generated; prefer the venue's official entry)
@article{wang2026dmgd,
title = {DMGD: Train-Free Dataset Distillation with Semantic-Distribution Matching in Diffusion Models},
author = {Qichao Wang and Yunhong Lu and Hengyuan Cao and Junyi Zhang and Min Zhang},
journal = {CVPR 2026},
year = {2026}
}Nearby in Diffusion-based synthesis
Learnability-guided diffusion — Learnability-Guided Diffusion for Dataset Distillation
Jeffrey A. Chan-Santiago, Mubarak Shah · CVPR 2026notablepaper ↗
ManifoldGD — ManifoldGD: Training-Free Hierarchical Manifold Guidance for Diffusion-Based Dataset Distillation
Ayush Roy, Wei-Yang Alex Lee, Rudrasis Chakraborty et al. · CVPR 2026notablepaper ↗code ↗
PDS — Multimodal Dataset Distillation Made Simple by Prototype-Guided Data Synthesis
Junhyeok Choi, Sangwoo Mo, Minwoo Chae · ICLR 2026coreVision–languagepaper ↗code ↗