CLASSP: a Biologically-Inspired Approach to Continual Learning through Adjustment Suppression and Sparsity Promotion
Oswaldo Ludwig

TL;DR
CLASSP is a biologically-inspired continual learning method that uses adjustment suppression and sparsity promotion, inspired by neuroscience, to improve accuracy and reduce memory use across tasks.
Contribution
This paper introduces CLASSP, a novel continual learning algorithm inspired by neuroscience principles, combining decay-based weight adjustments and gradient thresholds for sparse updates.
Findings
Outperforms EWC in accuracy on vision and sentiment datasets.
Reduces memory footprint compared to existing methods.
Applicable to any model via a Python/PyTorch implementation.
Abstract
This paper introduces a new biologically-inspired training method named Continual Learning through Adjustment Suppression and Sparsity Promotion (CLASSP). CLASSP is based on two main principles observed in neuroscience, particularly in the context of synaptic transmission and Long-Term Potentiation (LTP). The first principle is a decay rate over the weight adjustment, which is implemented as a generalization of the AdaGrad optimization algorithm. This means that weights that have received many updates should have lower learning rates as they likely encode important information about previously seen data. However, this principle results in a diffuse distribution of updates throughout the model, as it promotes updates for weights that haven't been previously updated, while a sparse update distribution is preferred to leave weights unassigned for future tasks. Therefore, the second…
Peer Reviews
No public reviews on file for this paper yet. If you reviewed it on a platform where reviews are public (OpenReview, ICLR, NeurIPS, ICML), you can paste yours below so the community can read it here.
Code & Models
Videos
No videos yet. Explain this paper in a talk, walkthrough, or lecture? Add one.
Taxonomy
TopicsDomain Adaptation and Few-Shot Learning
MethodsAdaGrad · Continual Learning through Adjustment Suppression and Sparsity Promotion
