A PyTorch Implementation of iCaRL: Incremental Classifier and Representation Learning.
The code implements experiments on CIFAR-10 and CIFAR-100
- This code does not reproduce the results from the paper. This may be due to following reasons:
- Different hyperparameters than the original ones in the paper (e.g. learning rate schedules).
- Different loss function; I replaced BCELoss to CrosEntropyLoss since it seemd to produce better results.
- I tried to replicate the algorithm exactly as described in the paper, but I might have missed some of the details.
- Versions
- Python 2.7
- PyTorch v0.1.12