Skip to content

Repository files navigation

Continuum: Simple Management of Complex Continual Learning Scenarios

PyPI versionBuild StatusCodacy BadgeDOIDocumentation Statuscoverage

DocPaperYoutube

A library for PyTorch's loading of datasets in the field of Continual Learning

Aka Continual Learning, Lifelong-Learning, Incremental Learning, etc.

Read the documentation.
Test Continuum on Colab !

Example:

Install from and PyPi:

pip3 install continuum

And run!

fromtorch.utils.dataimportDataLoaderfromcontinuumimportClassIncrementalfromcontinuum.datasetsimportMNISTfromcontinuum.tasksimportsplit_train_valdataset=MNIST("my/data/path", download=True, train=True)
scenario=ClassIncremental(
dataset,
increment=1,
initial_increment=5
)
print(f"Number of classes: {scenario.nb_classes}.")
print(f"Number of tasks: {scenario.nb_tasks}.")
fortask_id, train_tasksetinenumerate(scenario):
train_taskset, val_taskset=split_train_val(train_taskset, val_split=0.1)
train_loader=DataLoader(train_taskset, batch_size=32, shuffle=True)
val_loader=DataLoader(val_taskset, batch_size=32, shuffle=True)
forx, y, tintrain_loader:
# Do your cool stuff here

Supported Types of Scenarios

NameAcronym SupportedScenario
New Instances NIInstances Incremental
New Classes NCClasses Incremental
New Instances & Classes NICData Incremental

Supported Datasets:

Most dataset from torchvision.dasasets are supported, for the complete list, look at the documentation page on datasets here.

Furthermore some "Meta"-datasets are can be create or used from numpy array or any torchvision.datasets or from a folder for datasets having a tree-like structure or by combining several dataset and creating dataset fellowships!

Indexing

All our continual loader are iterable (i.e. you can for loop on them), and are also indexable.

Meaning that clloader[2] returns the third task (index starts at 0). Likewise, if you want to evaluate after each task, on all seen tasks do clloader_test[:n].

Example of Sample Images from a Continuum scenario

CIFAR10:

Task 0Task 1Task 2Task 3Task 4

MNIST Fellowship (MNIST + FashionMNIST + KMNIST):

Task 0Task 1Task 2

PermutedMNIST:

Task 0Task 1Task 2Task 3Task 4

RotatedMNIST:

Task 0Task 1Task 2Task 3Task 4

TransformIncremental + BackgroundSwap:

Task 0Task 1Task 2

Citation

If you find this library useful in your work, please consider citing it:

@misc{douillardlesort2021continuum,
author={Douillard, Arthur and Lesort, Timothée},
title={Continuum: Simple Management of Complex Continual Learning Scenarios},
publisher={arXiv: 2102.06253},
year={2021}
}

Maintainers

This project was started by a joint effort from Arthur Douillard & Timothée Lesort, and we are currently the two maintainers.

Feel free to contribute! If you want to propose new features, please create an issue.

Contributors: Lucas CacciaLucas CecchiPau Rodriguez, Yury Antonov, psychicmario, fcld94, Ashok Arjun, Md Rifat Arefin, DanieleMugnai, Xiaohan Zou, Umberto Cappellazzo.

On PyPi

Our project is available on PyPi!

pip3 install continuum

Note that previously another project, a CI tool, was using that name. It is now there continuum_ci.

Releases

Packages

Used by

Contributors

Languages