Home

Awesome

<div align="center">

Continual Learning Baselines

Avalanche Website | Avalanche Repository

</div> <p align="center"> <img src="https://www.dropbox.com/s/90thp7at72sh9tj/avalanche_logo_with_clai.png?raw=1"/> </p>

This project provides a set of examples with popular continual learning strategies and baselines. You can easily run experiments to reproduce results from original paper or tweak the hyperparameters to get your own results. Sky is the limit!

To guarantee fair implementations, we rely on the Avalanche library, developed and maintained by ContinualAI. Feel free to check it out and support the project!

Experiments

The tables below describes all the experiments currently implemented in the experiments folder, along with their result. The tables are not meant to compare different methods but rather as a reference for their performance. Different methods may use slightly different setups (e.g., starting from a pre-trained model or from scratch), so it does not always make sense to compare them.

If an experiment reproduces exactly the results of a paper in terms of Performance (even if with different hyper-parameters), it is marked with ✅ on the Reproduced column. Otherwise, it is marked with ❌.
Avalanche means that we could not find any specific paper as reference and we used the performance of Avalanche obtained when the strategy was first add to the library.
If the Performance is much worse than the expected one, the bug tag is used in the Reproduced column.
Finally, the Reference column reports the expected performance, together with a link to the associated paper (if any). Note that the link does not always point to the paper which introduced the strategy, since it sometimes differs from the one we used to get the target performance.

ACC means the Average Accuracy on all experiences after training on the last experience.

First, we report the results for the non-online continual learning case (a.k.a. batch continual learning). Then, we report the results for the online continual learning case.

Batch Continual Learning (non-online)

BenchmarksStrategyScenarioPerformanceReferenceReproduced
Permuted MNISTLess-Forgetful Learning (LFL)Domain-IncrementalACC=0.88ACC=0.88Avalanche
Permuted MNISTElastic Weight Consolidation (EWC)Domain-IncrementalACC=0.83ACC=0.94
Permuted MNISTSynaptic Intelligence (SI)Domain-IncrementalACC=0.83ACC=0.95
Split CIFAR-100LaMAMLTask-IncrementalACC=0.70ACC=0.70
Split CIFAR-100iCaRLClass-IncrementalACC=0.48ACC=0.50
Split CIFAR-100ReplayClass-IncrementalACC=0.32ACC=0.32Avalanche
Split MNISTRWalkTask-IncrementalACC=0.99ACC=0.99
Split MNISTSynaptic Intelligence (SI)Task-IncrementalACC=0.97ACC=0.97
Split MNISTGDumbClass-IncrementalACC=0.97ACC=0.97
Split MNISTGSS_greedyClass-IncrementalACC=0.82ACC=0.78
Split MNISTGenerative Replay (GR)Class-IncrementalACC=0.75ACC=0.75
Split MNISTLearning without Forgetting (LwF)Class-IncrementalACC=0.23ACC=0.23
Split Tiny ImageNetLaMAMLTask-IncrementalACC=0.54ACC=0.66
Split Tiny ImageNetLearning without Forgetting (LwF)Task-IncrementalACC=0.44ACC=0.44
Split Tiny ImageNetMemory Aware Synapses (MAS)Task-IncrementalACC=0.40ACC=0.40
Split Tiny ImageNetPackNetTask-IncrementalACC=0.46ACC=0.47 (Table 4 SMALL)

Online Continual Learning

BenchmarksStrategyScenarioPerformanceReferenceReproduced
CORe50Deep Streaming LDA (DSLDA)Class-IncrementalACC=0.79ACC=0.79
Permuted MNISTGEMDomain-IncrementalACC=0.80ACC=0.83
Split CIFAR-10Online ReplayClass-IncrementalACC=0.50ACC=0.50Avalanche
Split CIFAR-10ER-AMLClass-IncrementalACC=0.47ACC=0.47
Split CIFAR-10ER-ACEClass-IncrementalACC=0.45ACC=0.52
Split CIFAR-10Supervised Contrastive Replay (SCR)Class-IncrementalACC=0.36ACC=0.48Avalanche
Permuted MNISTAverage GEM (AGEM)Domain-IncrementalACC=0.81ACC=0.81
Split CIFAR-100GEMTask-IncrementalACC=0.63ACC=0.63
Split CIFAR-100Average GEM (AGEM)Task-IncrementalACC=0.62ACC=0.62
Split CIFAR-100ER-ACEClass-IncrementalACC=0.24ACC=0.25
Split CIFAR-100ER-AMLClass-IncrementalACC=0.24ACC=0.24
Split CIFAR-100Online ReplayClass-IncrementalACC=0.21ACC=0.21Avalanche
Split MNISTCoPEClass-IncrementalACC=0.93ACC=0.93
Split MNISTOnline ReplayClass-IncrementalACC=0.92ACC=0.92Avalanche

Python dependencies for experiments

Outside Python standard library, the main packages required to run the experiments are PyTorch, Avalanche and Pandas.

Run experiments with Python

Place yourself into the project root folder.

Experiments can be run with a python script by simply importing the function from the experiments folder and executing it.
By default, experiments will run on GPU, when available.

The input argument to each experiment is an optional dictionary of parameters to be used in the experiments. If None, default parameters (taken from original paper) will be used.

from experiments.split_mnist import synaptic_intelligence_smnist  # select the experiment

 # can be None to use default parameters
custom_hyperparameters = {'si_lambda': 0.01, 'cuda': -1, 'seed': 3}

# run the experiment
result = synaptic_intelligence_smnist(custom_hyperparameters)

# dictionary of avalanche metrics
print(result)  

Command line experiments

Place yourself into the project root folder.
You should add the project root folder to your PYTHONPATH.

For example, on Linux you can set it up globally:

export PYTHONPATH=${PYTHONPATH}:/path/to/continual-learning-baselines

or just for the current command:

PYTHONPATH=${PYTHONPATH}:/path/to/continual-learning-baselines command to be executed

You can run experiments directly through console with the default parameters.
Open the console and run the python file you want by specifying its path.

For example, to run Synaptic Intelligence on Split MNIST:

python experiments/split_mnist/synaptic_intelligence.py

To execute experiment with custom parameters, please refer to the previous section.

Run tests

Place yourself into the project root folder.

You can run all tests with

python -m unittest

or you can specify a test by providing the test name in the format tests.strategy_class_name.test_benchmarkname.

For example to run Synaptic Intelligence on Split MNIST you can run:

python -m unittest tests.SynapticIntelligence.test_smnist

Cite

If you used this repo you automatically used Avalanche, please remember to cite our reference paper published at the CLVision @ CVPR2021 workshop: "Avalanche: an End-to-End Library for Continual Learning". This will help us make Avalanche better known in the machine learning community, ultimately making it a better tool for everyone:

@InProceedings{lomonaco2021avalanche,
    title={Avalanche: an End-to-End Library for Continual Learning},
    author={Vincenzo Lomonaco and Lorenzo Pellegrini and Andrea Cossu and Antonio Carta and Gabriele Graffieti and Tyler L. Hayes and Matthias De Lange and Marc Masana and Jary Pomponi and Gido van de Ven and Martin Mundt and Qi She and Keiland Cooper and Jeremy Forest and Eden Belouadah and Simone Calderara and German I. Parisi and Fabio Cuzzolin and Andreas Tolias and Simone Scardapane and Luca Antiga and Subutai Amhad and Adrian Popescu and Christopher Kanan and Joost van de Weijer and Tinne Tuytelaars and Davide Bacciu and Davide Maltoni},
    booktitle={Proceedings of IEEE Conference on Computer Vision and Pattern Recognition},
    series={2nd Continual Learning in Computer Vision Workshop},
    year={2021}
}

Contribute to the project

We are always looking for new contributors willing to help us in the challenging mission of providing robust experiments to the community. Would you like to join us? The steps are easy!

  1. Take a look at the opened issues and find yours
  2. Fork this repo and write an experiment (see next section)
  3. Submit a PR and receive support from the maintainers
  4. Merge the PR, your contribution is now included in the project!

Write an experiment

  1. Create the appropriate script into experiments/benchmark_folder. If the benchmark is not present, you can add one.
  2. Fill the experiment.py file with your code, following the style of the other experiments. The script should return the metrics used by the related test.
  3. Add to tests/target_results.csv the expected result for your experiment. You can add a number or a list of numbers.
  4. Write the unit test in tests/strategy_folder/experiment.py. Follow the very simple structure of existing tests.
  5. Update table in README.md.

Find the avalanche commit which produced a regression

  1. Place yourself into the avalanche folder and make sure you are using the avalanche version from that repository in your python environment (it is usually enough to add /path/to/avalanche to your PYTHONPATH).
  2. Use the gitbisect_test.sh (provided in this repository) in combination with git bisect to retrieve the avalanche commit introducing the regression.
    git bisect start HEAD v0.1.0 -- # HEAD (current version) is bad, v0.1.0 is good
    git bisect run /path/to/gitbisect_test.sh /path/to/continual-learning-baselines optional_test_name
    git bisect reset
  3. The gitbisect_test.sh script requires a mandatory parameter pointing to the continual-learning-baselines directory and an optional parameter specifying the path to a particular unittest (e.g., tests.EWC.test_pmnist). If the second parameter is not given, all the unit tests will be run.
  4. The terminal output will tell you which commit introduced the bug
  5. You can change the HEAD and v0.1.0 ref to any avalanche commit.