Skip to content

Tackling continual learning as part of a project for university

Notifications You must be signed in to change notification settings

alexsasu/Continual-Learning-Task

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Continual-Learning-Task

Group project for the Deep Learning course, taken in the 3rd year at the Faculty of Mathematics and Computer Science, University of Bucharest.

The project consisted of tackling the AI task of continual learning, that is, making a model capable of remembering taught information over a long period of time, while addressing the concerns of catastrophic forgetting and model scalability. The dataset used was CLEAR-10, which was specifically designed for the task of continual learning, and contains images from 10 years (buckets). We decided to tackle this task by employing the experience replay method from the field of reinforcement learning. Thus, after every train bucket, we would retain 1% or 5% of the data in the respective bucket before moving on to the next train bucket. In order to choose which samples to retain, we tested four metrics: error L2 norm, Shannon entropy, margin (the difference between the logit of the correct class and the other largest logit. For misclassified samples the margin is negative), and random sampling; and we chose to keep only the hardest samples.

Some of the results obtained:

avg_test_acc

  • baseline cl - training on each bucket without retaining samples from the previous buckets
  • baseline iid - training on all the buckets at once

The metric which brought the best results with the experience replay method was the random sampling metric.

For our architecture, we used the ResNet18 provided by PyTorch - which was trained only on our data - along with an SGD optimizer with a starting learning rate of 0.01, cross-entropy loss, cosine annealing scheduler, training batch size of 64, and a number of epochs of minimum 20 and maximum 40.

More info can be consulted in the "Poster.pdf" file.

Contributors:

About

Tackling continual learning as part of a project for university

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published