├── .gitignore ├── README.md ├── data ├── class_folder_list.txt ├── data_loader.py ├── data_loader_imagenet.py └── imagenet100_s1993.txt ├── lib ├── __init__.py ├── augment │ ├── __init__.py │ ├── autoaugment_extra.py │ └── cutout.py └── util.py ├── main_cifar.py ├── main_imagenet.py ├── models ├── __init__.py ├── modified_linear.py ├── resnet18_imagenet.py └── resnet32_cifar.py ├── requirements.txt └── scripts ├── run_cifar.sh ├── run_cifar_w_sd.sh ├── run_imagenet.sh ├── run_imagenet100.sh ├── run_imagenet100_w_sd.sh └── run_imagenet_w_sd.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud0301/essentials_for_CIL/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud0301/essentials_for_CIL/HEAD/README.md -------------------------------------------------------------------------------- /data/class_folder_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud0301/essentials_for_CIL/HEAD/data/class_folder_list.txt -------------------------------------------------------------------------------- /data/data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud0301/essentials_for_CIL/HEAD/data/data_loader.py -------------------------------------------------------------------------------- /data/data_loader_imagenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud0301/essentials_for_CIL/HEAD/data/data_loader_imagenet.py -------------------------------------------------------------------------------- /data/imagenet100_s1993.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud0301/essentials_for_CIL/HEAD/data/imagenet100_s1993.txt -------------------------------------------------------------------------------- /lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/augment/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lib/augment/autoaugment_extra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud0301/essentials_for_CIL/HEAD/lib/augment/autoaugment_extra.py -------------------------------------------------------------------------------- /lib/augment/cutout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud0301/essentials_for_CIL/HEAD/lib/augment/cutout.py -------------------------------------------------------------------------------- /lib/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud0301/essentials_for_CIL/HEAD/lib/util.py -------------------------------------------------------------------------------- /main_cifar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud0301/essentials_for_CIL/HEAD/main_cifar.py -------------------------------------------------------------------------------- /main_imagenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud0301/essentials_for_CIL/HEAD/main_imagenet.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud0301/essentials_for_CIL/HEAD/models/__init__.py -------------------------------------------------------------------------------- /models/modified_linear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud0301/essentials_for_CIL/HEAD/models/modified_linear.py -------------------------------------------------------------------------------- /models/resnet18_imagenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud0301/essentials_for_CIL/HEAD/models/resnet18_imagenet.py -------------------------------------------------------------------------------- /models/resnet32_cifar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud0301/essentials_for_CIL/HEAD/models/resnet32_cifar.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud0301/essentials_for_CIL/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/run_cifar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud0301/essentials_for_CIL/HEAD/scripts/run_cifar.sh -------------------------------------------------------------------------------- /scripts/run_cifar_w_sd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud0301/essentials_for_CIL/HEAD/scripts/run_cifar_w_sd.sh -------------------------------------------------------------------------------- /scripts/run_imagenet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud0301/essentials_for_CIL/HEAD/scripts/run_imagenet.sh -------------------------------------------------------------------------------- /scripts/run_imagenet100.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud0301/essentials_for_CIL/HEAD/scripts/run_imagenet100.sh -------------------------------------------------------------------------------- /scripts/run_imagenet100_w_sd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud0301/essentials_for_CIL/HEAD/scripts/run_imagenet100_w_sd.sh -------------------------------------------------------------------------------- /scripts/run_imagenet_w_sd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sud0301/essentials_for_CIL/HEAD/scripts/run_imagenet_w_sd.sh --------------------------------------------------------------------------------