データセットの蒸留は、元のデータセットのほとんどの情報を保持する小さな合成データセットを学習することを目的としています。データセットの蒸留は、外側のループがメタデータセットを最適化し、内側のループが蒸留されたデータでモデルをトレーニングする、バイレベルのメタ学習問題として定式化できます。メタ勾配計算は、この定式化における主要な課題の 1 つです。内部ループ学習手順による微分は、かなりの計算とメモリのコストをもたらすためです。このホワイト ペーパーでは、プーリングを使用したニューラル特徴回帰 (FRePo) を使用してこれらの課題に対処し、以前の方法よりも 1 桁少ないメモリ要件と 2 桁速いトレーニングで最先端のパフォーマンスを実現します。提案されたアルゴリズムは、データセットの蒸留におけるさまざまなタイプのオーバーフィッティングを軽減するために、モデルのプールを使用した時間の切り捨てられた逆伝播に似ています。 FRePo は、CIFAR100、Tiny ImageNet、および ImageNet-1K で以前の方法よりも大幅に優れています。さらに、高品質の抽出されたデータは、継続的な学習やメンバーシップの推論防御など、さまざまなダウンストリーム アプリケーションを大幅に改善できることを示しています。 https://sites.google.com/view/frepo のウェブページをご覧ください。
Dataset distillation aims to learn a small synthetic dataset that preserves most of the information from the original dataset. Dataset distillation can be formulated as a bi-level meta-learning problem where the outer loop optimizes the meta-dataset and the inner loop trains a model on the distilled data. Meta-gradient computation is one of the key challenges in this formulation, as differentiating through the inner loop learning procedure introduces significant computation and memory costs. In this paper, we address these challenges using neural Feature Regression with Pooling (FRePo), achieving the state-of-the-art performance with an order of magnitude less memory requirement and two orders of magnitude faster training than previous methods. The proposed algorithm is analogous to truncated backpropagation through time with a pool of models to alleviate various types of overfitting in dataset distillation. FRePo significantly outperforms the previous methods on CIFAR100, Tiny ImageNet, and ImageNet-1K. Furthermore, we show that high-quality distilled data can greatly improve various downstream applications, such as continual learning and membership inference defense. Please check out our webpage at https://sites.google.com/view/frepo.