Skip to content

Commit 6cd6703

Browse files
authored
Merge pull request #1 from arthurdouillard/master
I want to pull changes please!
2 parents d39f6dc + a0b4edf commit 6cd6703

File tree

5 files changed

+21
-5
lines changed

5 files changed

+21
-5
lines changed

README.md

Lines changed: 20 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,18 @@ You can find the list of the latter on my [Google Scholar](https://scholar.googl
99

1010
Every model must inherit `inclearn.models.base.IncrementalLearner`.
1111

12-
## Small Task Incremental Learning
12+
<div align="center">
1313

14-
Under review, preprint on arXiv [here](https://arxiv.org/abs/2004.13513).
14+
# PODNet: Pooled Outputs Distillation for Small-Tasks Incremental Learning
15+
16+
[![Paper](https://img.shields.io/badge/arXiv-2004.13513-brightgreen)](https://arxiv.org/abs/2004.13513)
17+
![ECCV](https://img.shields.io/badge/ECCC-2020-blue)]
18+
19+
</div>
20+
21+
![podnet](images/podnet.png)
22+
23+
![podnet plot](images/podnet_plot.png)
1524

1625
If you use this paper/code in your research, please consider citing us:
1726

@@ -57,9 +66,16 @@ python3 -minclearn --options options/podnet/podnet_cnn_imagenet100.yaml options/
5766
Furthermore several options files are available to reproduce the ablations showcased
5867
in the paper. Please see the directory `./options/podnet/ablations/`.
5968

60-
## Insight From the Future for Continual Learning
69+
<div align="center">
70+
71+
# Insight From the Future for Continual Learning
72+
73+
[![Paper](https://img.shields.io/badge/arXiv-2006.13748-brightgreen)](https://arxiv.org/abs/2006.13748)
74+
![Preprint](https://img.shields.io/badge/Preprint-2020-blue)]
75+
76+
</div>
6177

62-
Under review, preprint on arXiv [here](https://arxiv.org/abs/2006.13748).
78+
![ghost](images/ghost.png)
6379

6480
If you use this paper/code in your research, please consider citing us:
6581

images/ghost.png

133 KB
Loading

images/podnet.png

77.9 KB
Loading

images/podnet_plot.png

173 KB
Loading

inclearn/models/podnet.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def __init__(self, args):
3838

3939
# Rehearsal Learning:
4040
self._memory_size = args["memory_size"]
41-
self._fixed_memory = args["fixed_memory"]
41+
self._fixed_memory = args.get("fixed_memory", True)
4242
self._herding_selection = args.get("herding_selection", {"type": "icarl"})
4343
self._n_classes = 0
4444
self._last_results = None

0 commit comments

Comments
 (0)