Dataset Condensation Atlas

Method · Decoupled teacher-driven synthesis

CDA

Dataset Distillation via Curriculum Data Synthesis in Large Data Era

Zeyuan Yin, Zhiqiang Shen

TMLR 2024 · first public 2023-11-30 · arXiv 2311.18838

paper ↗code ↗notable✓ full text read

In one paragraph

Extends SRe2L's decoupled synthesis with curriculum data augmentation that refines the gradient update from global to local over the synthesis iterations, since the first few update steps determine the final image outline; reports 63.2% top-1 on ImageNet-1K at IPC 50 and 36.1% on ImageNet-21K at IPC 20, the first reported ImageNet-21K distillation at 224x224 resolution, beating SRe2L, TESLA and MTT by more than 4 points.

Explained

What came before

Names SRe2L as its "closest baseline" and keeps its squeeze-recover-relabel pipeline and its cross-entropy-plus-BN-statistics recovery loss unchanged. Also compares against MTT and TESLA (trajectory matching) and DM/DSA/FRePo (surrogate/kernel methods) on small-scale data.

The problem

SRe2L uses a constant RandomResizedCrop range across all recovery iterations even though, the paper argues and visualizes, the first few update steps already fix an image's global outline; a poor early crop distribution permanently bakes a noisy or degenerate layout into the synthetic image, and the later iterations can only refine local detail around that fixed outline.

The idea

Schedule the crop scale used during recovery from global to local: start with large, near-full-image crops so the outline forms correctly, then shrink the minimum crop scale over iterations (a curriculum, step/linear/cosine schedules tested, cosine chosen) so later iterations refine local texture. No new loss term is added — only the augmentation schedule fed into the unchanged SRe2L objective changes.

How it works

Squeeze uses the same off-the-shelf teachers as SRe2L (ResNet-18/DenseNet-121 for ImageNet-1K); for ImageNet-21K a ResNet-18/50 is initialized from ImageNet-1K weights and fine-tuned with label smoothing and stronger augmentation. Recover keeps SRe2L's loss (cross-entropy against the target label plus BN mean/variance matching) but replaces the fixed RandomResizedCrop range with a schedule $\alpha=\beta_l+\gamma\cdot(\beta_u+\cos(\pi s/T))/2$ moving the minimum crop scale from near 1.0 toward 0.08 as iteration $s$ approaches milestone $T$. Relabel is unchanged from SRe2L: FKD-style stored soft labels from the same teacher, no per-epoch recomputation. Post-evaluation uses AdamW, cosine LR, 300 epochs, RandomResizedCrop only (no CutMix/Mixup), and a smaller batch size (32) than SRe2L's, justified via a generalization-gap argument.

Evidence

ImageNet-1K, ResNet-18, IPC=50 (Table 1/4): CDA 53.5% vs SRe2L 46.8% (both soft-labeled); IPC=100 58.0% vs 52.8%; IPC=200 63.3% vs 57.0%. The headline "63.2% at IPC=50" and "36.1% at IPC=20" numbers in the abstract are not the ResNet-18 figures but the best cross-architecture results (RegNet-Y-8GF on ImageNet-1K; ResNet-101 on ImageNet-21K). First ImageNet-21K distillation at 224x224 (Table 4): IPC=20, ResNet-18 26.4% vs SRe2L 21.8% (both replicated by CDA, since SRe2L never reported 21K); ResNet-101 36.1% vs 33.2%. Table 1 marks several SRe2L numbers with an asterisk as CDA's own replication (e.g. ImageNet-1K IPC=10 SRe2L* 21.3%) where SRe2L's own paper did not report that setting, while IPC=50/100/200 SRe2L numbers are taken verbatim from SRe2L's paper. No hard-label result is reported. Convergence claim (Table 17): CDA at 1K recovery iterations (52.9%, ResNet-18) beats SRe2L's full 4K-iteration budget (46.8%). Key ablation (Table 3): fixed, non-curriculum crop ranges degrade sharply at either extreme (large-only or small-only crops) relative to the reproduced SRe2L baseline (44.9%), isolating the global-to-local schedule itself as the mechanism.

Limitations

States synthetic realism is not competitive with generative models by design, since the objective prioritizes informativeness. Reports no advantage at very low IPC (e.g. IPC=1). Not evaluated beyond ImageNet-21K. Still fully dependent on SRe2L's teacher-architecture-specific BN-matching recovery objective — CDA changes only the augmentation schedule, not the underlying loss — and its curriculum hyperparameters ($\beta_l,\beta_u,\gamma$, milestone) are tuned per dataset and architecture, an unaddressed tuning burden.

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, imagenet-21k, tiny-imagenet

Builds on

Built on by

Abstract (verbatim from arXiv)

Dataset distillation or condensation aims to generate a smaller but representative subset from a large dataset, which allows a model to be trained more efficiently, meanwhile evaluating on the original testing data distribution to achieve decent performance. Previous decoupled methods like SRe$^2$L simply use a unified gradient update scheme for synthesizing data from Gaussian noise, while, we notice that the initial several update iterations will determine the final outline of synthesis, thus an improper gradient update strategy may dramatically affect the final generation quality. To address this, we introduce a simple yet effective global-to-local gradient refinement approach enabled by curriculum data augmentation ($\texttt{CDA}$) during data synthesis. The proposed framework achieves the current published highest accuracy on both large-scale ImageNet-1K and 21K with 63.2% under IPC (Images Per Class) 50 and 36.1% under IPC 20, using a regular input resolution of 224$\times$224 with faster convergence speed and less synthetic time. The proposed model outperforms the current state-of-the-art methods like SRe$^2$L, TESLA, and MTT by more than 4% Top-1 accuracy on ImageNet-1K/21K and for the first time, reduces the gap to its full-data training counterparts to less than absolute 15%. Moreover, this work represents the inaugural success in dataset distillation on the larger-scale ImageNet-21K dataset under the standard 224$\times$224 resolution. Our code and distilled ImageNet-21K dataset of 20 IPC, 2K recovery budget are available at https://github.com/VILA-Lab/SRe2L/tree/main/CDA.

BibTeX (generated; prefer the venue's official entry)
@article{yin2023dataset,
  title   = {Dataset Distillation via Curriculum Data Synthesis in Large Data Era},
  author  = {Zeyuan Yin and Zhiqiang Shen},
  journal = {TMLR 2024},
  year    = {2023}
}

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 ↗