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 remove_conda_files
  • Loading branch information
AntonioCarta committed Jan 25, 2024
2 parents 2475222 + 23de5a0 commit de3007c
Show file tree
Hide file tree
Showing 35 changed files with 2,622 additions and 794 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.
3 changes: 1 addition & 2 deletions .github/workflows/environment-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,7 @@ jobs:
- name: install conda environment
run: |
mamba create -n avalanche-env -y -v python=${{ matrix.python-version }} -c conda-forge &&
conda run -n avalanche-env --no-capture-output mamba install -y -v pytorch==1.12.1 torchvision cpuonly -c pytorch &&
conda run -n avalanche-env --no-capture-output pip install . -v
conda run -n avalanche-env --no-capture-output pip install -r requirements.txt
- name: python unit test
id: unittest
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/syntax.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@ jobs:
token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/setup-python@v2
with:
python-version: 3.10
python-version: "3.10.12"
- uses: cclauss/Find-Python-syntax-errors-action@master
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 de3007c

Please sign in to comment.