Adaptive Dataset Quantization
Muquan Li, Dongyang Zhang, Qiang Dong, Xiurui Xie, Ke Qin
TL;DR
ADQ tackles data-hungry deep learning by proposing a bin-aware compression framework that replaces uniform per-bin sampling with adaptive sampling guided by three scores. It defines Representativeness Score $Rep$, Diversity Score $Div$, and Importance Score $IS$ as $\hat{I}_n = \hat{Rep}_n + \hat{Div}_n$, where $\hat{Rep}_n$ and $\hat{Div}_n$ are normalized; sampling proportions follow $ r_n = \alpha \hat{I}_n + (1-\alpha)\frac{N(n)}{\sum_n N(n)}$ and per-bin counts $ q_n = \left\lfloor r_n N(n) \right\rfloor$. RS uses a texture-level method, DS uses contrastive learning, and the final step includes MAE-based patch dropping for lossless compression with only a subset of data. Experiments on CIFAR-10 and ImageNet-1K show average gains around 3 percentage points over prior methods, with strong cross-architecture generalization and efficient training.
Abstract
Contemporary deep learning, characterized by the training of cumbersome neural networks on massive datasets, confronts substantial computational hurdles. To alleviate heavy data storage burdens on limited hardware resources, numerous dataset compression methods such as dataset distillation (DD) and coreset selection have emerged to obtain a compact but informative dataset through synthesis or selection for efficient training. However, DD involves an expensive optimization procedure and exhibits limited generalization across unseen architectures, while coreset selection is limited by its low data keep ratio and reliance on heuristics, hindering its practicality and feasibility. To address these limitations, we introduce a newly versatile framework for dataset compression, namely Adaptive Dataset Quantization (ADQ). Specifically, we first identify the sub-optimal performance of naive Dataset Quantization (DQ), which relies on uniform sampling and overlooks the varying importance of each generated bin. Subsequently, we propose a novel adaptive sampling strategy through the evaluation of generated bins' representativeness score, diversity score and importance score, where the former two scores are quantified by the texture level and contrastive learning-based techniques, respectively. Extensive experiments demonstrate that our method not only exhibits superior generalization capability across different architectures, but also attains state-of-the-art results, surpassing DQ by average 3\% on various datasets.
