CVAug 4, 2023

Class Incremental Learning with Self-Supervised Pre-Training and Prototype Learning

arXiv:2308.02346v141 citationsh-index: 68
Originality Highly original
AI Analysis

This addresses the problem of incremental learning for AI systems that need to adapt to new classes over time, offering a non-exemplar based solution that is incremental but shows strong gains.

The paper tackles catastrophic forgetting in class incremental learning by analyzing its causes and proposing a two-stage framework with self-supervised pre-training and prototype learning, achieving improvements of 18.24% on CIFAR-100 and 9.37% on ImageNet100 over state-of-the-art exemplar-based methods.

Deep Neural Network (DNN) has achieved great success on datasets of closed class set. However, new classes, like new categories of social media topics, are continuously added to the real world, making it necessary to incrementally learn. This is hard for DNN because it tends to focus on fitting to new classes while ignoring old classes, a phenomenon known as catastrophic forgetting. State-of-the-art methods rely on knowledge distillation and data replay techniques but still have limitations. In this work, we analyze the causes of catastrophic forgetting in class incremental learning, which owes to three factors: representation drift, representation confusion, and classifier distortion. Based on this view, we propose a two-stage learning framework with a fixed encoder and an incrementally updated prototype classifier. The encoder is trained with self-supervised learning to generate a feature space with high intrinsic dimensionality, thus improving its transferability and generality. The classifier incrementally learns new prototypes while retaining the prototypes of previously learned data, which is crucial in preserving the decision boundary.Our method does not rely on preserved samples of old classes, is thus a non-exemplar based CIL method. Experiments on public datasets show that our method can significantly outperform state-of-the-art exemplar-based methods when they reserved 5 examplers per class, under the incremental setting of 10 phases, by 18.24% on CIFAR-100 and 9.37% on ImageNet100.

Foundations

The foundational work for this paper's niche, ranked by how specifically the neighbourhood builds on it — not by global fame.

Your Notes