Dataset Distillation via Relative Distribution Matching and Cognitive Heritage
Qianxin Xia, Jiawei Du, Yuhan Zhang, Jielei Wang, Guoming Lu
TL;DR
The paper tackles the resource-intensive nature of dataset distillation for pre-trained self-supervised vision models by replacing batch-level linear gradient matching with Statistical Flow Matching (SFM), which aligns synthetic data to a fixed global flow computed from original data statistics. It further introduces Classifier Inheritance (CI), which reuses the original dataset's classifier via a lightweight projector during evaluation, enabling near-full-data performance with minimal storage and compute. Across diverse backbones (e.g., CLIP, DINO-v2, EVA-02, MoCo-v3) and datasets (including ImageNet-1k and ImageNet-100), SFM consistently outperforms LGM, and CI yields substantial gains, sometimes approaching full-dataset training accuracy with IPC as low as one image per class. The approach reduces GPU memory and runtime substantially, offering practical potential for edge environments and future extensions to object detection and semantic segmentation.
Abstract
Dataset distillation seeks to synthesize a highly compact dataset that achieves performance comparable to the original dataset on downstream tasks. For the classification task that use pre-trained self-supervised models as backbones, previous linear gradient matching optimizes synthetic images by encouraging them to mimic the gradient updates induced by real images on the linear classifier. However, this batch-level formulation requires loading thousands of real images and applying multiple rounds of differentiable augmentations to synthetic images at each distillation step, leading to substantial computational and memory overhead. In this paper, we introduce statistical flow matching , a stable and efficient supervised learning framework that optimizes synthetic images by aligning constant statistical flows from target class centers to non-target class centers in the original data. Our approach loads raw statistics only once and performs a single augmentation pass on the synthetic data, achieving performance comparable to or better than the state-of-the-art methods with 10x lower GPU memory usage and 4x shorter runtime. Furthermore, we propose a classifier inheritance strategy that reuses the classifier trained on the original dataset for inference, requiring only an extremely lightweight linear projector and marginal storage while achieving substantial performance gains.
