Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Pytorch Cyclegan And Pix2pix | 19,434 | 9 days ago | 476 | other | Python | |||||
Image-to-Image Translation in PyTorch | ||||||||||
Datasets | 15,583 | 9 | 208 | 8 hours ago | 52 | June 15, 2022 | 529 | apache-2.0 | Python | |
🤗 The largest hub of ready-to-use datasets for ML models with fast, easy-to-use and efficient data manipulation tools | ||||||||||
Insightface | 13,716 | 1 | 4 | 4 days ago | 24 | January 29, 2022 | 1,227 | mit | Python | |
State-of-the-art 2D and 3D Face Analysis Project | ||||||||||
Vision | 13,553 | 2,306 | 1,413 | 9 hours ago | 32 | June 28, 2022 | 887 | bsd-3-clause | Python | |
Datasets, Transforms and Models specific to Computer Vision | ||||||||||
Cvat | 9,048 | 8 hours ago | 2 | September 08, 2022 | 487 | mit | TypeScript | |||
Annotate better with CVAT, the industry-leading data engine for machine learning. Used and trusted by teams at any scale, for data of any scale. | ||||||||||
Awesome Semantic Segmentation | 8,065 | 2 years ago | 13 | |||||||
:metal: awesome-semantic-segmentation | ||||||||||
Tts | 6,557 | 2 months ago | 7 | mpl-2.0 | Jupyter Notebook | |||||
:robot: :speech_balloon: Deep learning for Text to Speech (Discussion forum: https://discourse.mozilla.org/c/tts) | ||||||||||
Techniques | 6,086 | 17 hours ago | 1 | apache-2.0 | ||||||
Techniques for deep learning with satellite & aerial imagery | ||||||||||
Deeplake | 5,335 | 52 | 1 | 12 hours ago | 149 | June 28, 2022 | 66 | mpl-2.0 | Python | |
Data Lake for Deep Learning. Build, manage, query, version, & visualize datasets. Stream data real-time to PyTorch/TensorFlow. https://activeloop.ai | ||||||||||
Yet Another Efficientdet Pytorch | 4,892 | a year ago | 325 | lgpl-3.0 | Jupyter Notebook | |||||
The pytorch re-implement of the official efficientdet with SOTA performance in real time and pretrained weights. |
Aka Continual Learning, Lifelong-Learning, Incremental Learning, etc.
Read the documentation.
Test Continuum on Colab !
Install from and PyPi:
pip3 install continuum
And run!
from torch.utils.data import DataLoader
from continuum import ClassIncremental
from continuum.datasets import MNIST
from continuum.tasks import split_train_val
dataset = 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}.")
for task_id, train_taskset in enumerate(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)
for x, y, t in train_loader:
# Do your cool stuff here
Name | Acronym | Supported | Scenario |
---|---|---|---|
New Instances | NI | ✅ | Instances Incremental |
New Classes | NC | ✅ | Classes Incremental |
New Instances & Classes | NIC | ✅ | Data Incremental |
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!
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]
.
CIFAR10:
![]() |
![]() |
![]() |
![]() |
![]() |
---|---|---|---|---|
Task 0 | Task 1 | Task 2 | Task 3 | Task 4 |
MNIST Fellowship (MNIST + FashionMNIST + KMNIST):
![]() |
![]() |
![]() |
---|---|---|
Task 0 | Task 1 | Task 2 |
PermutedMNIST:
![]() |
![]() |
![]() |
![]() |
![]() |
---|---|---|---|---|
Task 0 | Task 1 | Task 2 | Task 3 | Task 4 |
RotatedMNIST:
![]() |
![]() |
![]() |
![]() |
![]() |
---|---|---|---|---|
Task 0 | Task 1 | Task 2 | Task 3 | Task 4 |
TransformIncremental + BackgroundSwap:
![]() |
![]() |
![]() |
---|---|---|
Task 0 | Task 1 | Task 2 |
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}
}
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 Caccia Lucas Cecchi Pau Rodriguez, Yury Antonov, psychicmario, fcld94, Ashok Arjun, Md Rifat Arefin, DanieleMugnai, Xiaohan Zou, Umberto Cappellazzo.
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.