Dataset Condensation Atlas

Method · Decoupled teacher-driven synthesis

DWA

Diversity-Driven Synthesis: Enhancing Dataset Distillation through Directed Weight Adjustment

Jiawei Du, Xin Zhang, Juncheng Hu, Wenxin Huang, Joey Tianyi Zhou

NeurIPS 2024 · first public 2024-09-26 · arXiv 2409.17612

paper ↗code ↗notable✓ full text read

In one paragraph

Provides a theoretical and empirical analysis of diversity within synthesized datasets and argues that the parallelizable but isolated synthesis common to decoupled methods needs an explicit diversity mechanism; introduces dynamic, directed weight adjustment during synthesis so each synthetic instance mirrors a large, varying subset of the real data, improving performance on CIFAR, Tiny-ImageNet and ImageNet-1K at minimal extra computational cost.

Explained

What came before

Builds directly on SRe2L's decoupled recovery loss (classification loss plus BN mean/variance matching). Does not name G-VBSM or CDA anywhere in the text; positions itself purely as a fix to SRe2L's per-image independent optimization, and separately criticizes MTT/TESLA (trajectory matching) for compute cost that blocks ImageNet-1K scaling.

The problem

In decoupled synthesis, each synthetic image is optimized independently against the same fixed global teacher BN statistics, so images of one class end up similar. The paper proves the variance-matching term of the BN loss governs almost all of the diversity a synthetic batch can have, that random Gaussian initialization contributes only marginally, and that the mean- and variance-matching gradients can actively conflict, suppressing diversity further.

The idea

Instead of adding random noise for diversity, perturb the teacher's weights in a directed way — chosen to maximize loss on a small random real-data batch, i.e. a sharpness-aware-style ascent step — so each synthetic image is optimized against a slightly different, data-grounded teacher. Because the perturbation is derived from real data rather than noise, it adds meaningful diversity while a first-order argument shows the perturbed teacher still generalizes.

How it works

Teacher: standard pretrained ResNet-18/50/101 (torchvision for ImageNet-1K; standard recipe for CIFAR/Tiny-ImageNet). Baseline recovery loss is SRe2L's, but with the BN coefficient split into separate $\lambda_{mean}$ (fixed 0.01) and $\lambda_{var}$ (tuned, optimum 0.11), since variance matching is shown to dominate diversity. Directed weight adjustment: $\Delta\tilde\theta = \arg\max_{\Delta\theta} L_B(f_{\theta_{\mathcal T}+\Delta\theta})$ over a random real-data subset $B$, solved with $K{=}12$ forward-backward ascent steps and perturbation radius $\rho{=}0.015$; the perturbed teacher is used for that image's recovery loss $\ell(f_{\theta_{\mathcal T}+\Delta\tilde\theta},s_i)+\lambda_{mean}L_{mean}+\lambda_{var}L_{var}$. No change to the relabeling step is described (no storage size or per-crop/stored distinction reported), and label regime is otherwise unchanged from SRe2L. Post-eval: ImageNet-1K 300 epochs, AdamW, cosine LR, RandomResizedCrop+Flip; CIFAR 400 epochs; Tiny-ImageNet 200 epochs, SGD.

Evidence

Own re-run SRe2L baseline throughout (Table 1/2, ResNet-18): CIFAR-10 IPC=10 27.2% to DWA 32.6%, IPC=50 47.5% to 53.1%; CIFAR-100 IPC=10 31.6% to 39.6%, IPC=50 52.2% to 60.9%; Tiny-ImageNet IPC=50 41.1% to 52.8%; ImageNet-1K IPC=10 21.3% to 37.9% (+16.6 points), IPC=50 46.8% to 55.2% (+8.4 points), IPC=100 52.8% to 59.2%. Larger teacher/students at ImageNet-1K IPC=50: ResNet-50 55.6% to 62.3%, ResNet-101 60.8% to 63.3%. No hard-label result. Overhead: the abstract's "<0.1%" claim refers to marginal per-iteration cost, but Table 11 reports a measured 7.3% wall-clock overhead on CIFAR-100 (116.6s/IPC to 125.1s/IPC) — the two overhead figures in the paper are not consistent with each other. Key ablation (Table 3, CIFAR-100, ResNet-18): no adjustment IPC=10 30.6%/IPC=50 56.1%; random (undirected) $\Delta\theta$ IPC=10 collapses to 14.9%/IPC=50 56.2%; directed (DWA) IPC=10 39.6%/IPC=50 60.3% — showing direction, not magnitude of perturbation, is what helps, and that random perturbation actively hurts at low budgets.

Limitations

States its own dependence on sampling a random distribution to select/scale the ascent step is a limitation: too much variance in that distribution can introduce unhelpful noise and bottleneck performance, as the random-perturbation ablation shows directly. No soft-label storage cost is reported despite the atlas-wide concern that relabeling dominates storage in this family. Proposes, but does not implement, sequential/curriculum synthesis for further diversity gains as future work.

Written by the atlas from the paper's full text. Check the paper for exact numbers.

Where it sits

Design choices

Labelssoft-relabel
Prior / networks usedpretrained-classifier
Optimization regimedecoupled
What is storedpixels
Largest scale evaluatedimagenet-1k, tiny-imagenet, mnist-cifar

Builds on

Abstract (verbatim from arXiv)

The sharp increase in data-related expenses has motivated research into condensing datasets while retaining the most informative features. Dataset distillation has thus recently come to the fore. This paradigm generates synthetic datasets that are representative enough to replace the original dataset in training a neural network. To avoid redundancy in these synthetic datasets, it is crucial that each element contains unique features and remains diverse from others during the synthesis stage. In this paper, we provide a thorough theoretical and empirical analysis of diversity within synthesized datasets. We argue that enhancing diversity can improve the parallelizable yet isolated synthesizing approach. Specifically, we introduce a novel method that employs dynamic and directed weight adjustment techniques to modulate the synthesis process, thereby maximizing the representativeness and diversity of each synthetic instance. Our method ensures that each batch of synthetic data mirrors the characteristics of a large, varying subset of the original dataset. Extensive experiments across multiple datasets, including CIFAR, Tiny-ImageNet, and ImageNet-1K, demonstrate the superior performance of our method, highlighting its effectiveness in producing diverse and representative synthetic datasets with minimal computational expense. Our code is available at https://github.com/AngusDujw/Diversity-Driven-Synthesis.https://github.com/AngusDujw/Diversity-Driven-Synthesis.

BibTeX (generated; prefer the venue's official entry)
@article{du2024diversity,
  title   = {Diversity-Driven Synthesis: Enhancing Dataset Distillation through Directed Weight Adjustment},
  author  = {Jiawei Du and Xin Zhang and Juncheng Hu and Wenxin Huang and Joey Tianyi Zhou},
  journal = {NeurIPS 2024},
  year    = {2024}
}

Nearby in Decoupled teacher-driven synthesis

2026-07

CIM — Condensing Large-Scale Datasets Directly with Minimal Information Loss

Xinyi Shang, Peng Sun, Bei Shi et al. · ECCV 2026notablepaper ↗code ↗

2026-03

FD2 — FD$^2$: A Dedicated Framework for Fine-Grained Dataset Distillation

Hongxu Ma, Guang Li, Shijie Wang et al. · ECCV 2026notablepaper ↗

2026-02

Fixed Anchors Are Not Enough: Dynamic Retrieval and Persistent Homology for Dataset Distillation

Muquan Li, Hang Gou, Yingyi Ma et al. · CVPR 2026notablepaper ↗

2026-01

Grounding and Enhancing Informativeness and Utility in Dataset Distillation

Shaobo Wang, Yantai Yang, Guo Chen et al. · ICLR 2026notablepaper ↗

2026-01

OGM — Beyond Soft Label: Dataset Distillation via Orthogonal Gradient Matching

Deyu Bo, Xinchao Wang · CVPR 2026notablepaper ↗