Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/ContinualAI/avalanche int…
Browse files Browse the repository at this point in the history
…o update_3_11
  • Loading branch information
AntonioCarta committed Jan 24, 2024
2 parents bc2e02b + 1587022 commit 89f09ae
Show file tree
Hide file tree
Showing 29 changed files with 2,332 additions and 687 deletions.
Binary file added .gitbook/assets/ewc_template_animation.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 17 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,23 @@ detail and make you a true Continual Learner! :woman_student:

Cite Avalanche
----------------
If you used Avalanche in your research project, please remember to cite our reference paper published at the [CLVision @ CVPR2021](https://sites.google.com/view/clvision2021/overview?authuser=0) workshop: ["Avalanche: an End-to-End Library for Continual Learning"](https://arxiv.org/abs/2104.00405).
This will help us make Avalanche better known in the machine learning community, ultimately making a better tool for everyone:

If you use Avalanche in your research project, please remember to cite our JMLR-MLOSS paper [https://jmlr.org/papers/v24/23-0130.html](https://jmlr.org/papers/v24/23-0130.html). This will help us make Avalanche better known in the machine learning community, ultimately making a better tool for everyone:

```
@article{JMLR:v24:23-0130,
author = {Antonio Carta and Lorenzo Pellegrini and Andrea Cossu and Hamed Hemati and Vincenzo Lomonaco},
title = {Avalanche: A PyTorch Library for Deep Continual Learning},
journal = {Journal of Machine Learning Research},
year = {2023},
volume = {24},
number = {363},
pages = {1--6},
url = {http://jmlr.org/papers/v24/23-0130.html}
}
```

you can also cite the previous [CLVision @ CVPR2021](https://sites.google.com/view/clvision2021/overview?authuser=0) workshop paper: ["Avalanche: an End-to-End Library for Continual Learning"](https://arxiv.org/abs/2104.00405).

```
@InProceedings{lomonaco2021avalanche,
Expand Down
8 changes: 4 additions & 4 deletions avalanche/benchmarks/datasets/clear/clear_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,21 +13,21 @@
clear10 = [
(
"clear10-train.zip", # name
"https://huggingface.co/datasets/elvishelvis6/CLEAR-Continual_Learning_Benchmark/resolve/main/",
"https://huggingface.co/datasets/elvishelvis6/CLEAR-Continual_Learning_Benchmark/resolve/main/clear10-train.zip",
),
(
"clear10-test.zip", # name
"https://huggingface.co/datasets/elvishelvis6/CLEAR-Continual_Learning_Benchmark/resolve/main/",
"https://huggingface.co/datasets/elvishelvis6/CLEAR-Continual_Learning_Benchmark/resolve/main/clear10-test.zip",
),
]
clear100 = [
(
"clear100-train.zip", # name
"https://huggingface.co/datasets/elvishelvis6/CLEAR-Continual_Learning_Benchmark/resolve/main/",
"https://huggingface.co/datasets/elvishelvis6/CLEAR-Continual_Learning_Benchmark/resolve/main/clear100-train.zip",
),
(
"clear100-test.zip", # name
"https://huggingface.co/datasets/elvishelvis6/CLEAR-Continual_Learning_Benchmark/resolve/main/",
"https://huggingface.co/datasets/elvishelvis6/CLEAR-Continual_Learning_Benchmark/resolve/main/clear100-test.zip",
),
]
clear10_neurips2021 = [
Expand Down
Loading

0 comments on commit 89f09ae

Please sign in to comment.