├── Datasets └── imagenet100_s1993.txt ├── README.md ├── figures └── Class_Incremental_Results.jpg ├── idatasets ├── __pycache__ │ └── imagenet_100.cpython-37.pyc └── imagenet_100.py ├── incremental_dataloader.py ├── logger.py ├── models ├── Conv_DCFE.py ├── __pycache__ │ ├── Conv_DCFE.cpython-37.pyc │ ├── ensemble_layers.cpython-37.pyc │ ├── resnet18_dcf_bsensemble_imgnet.cpython-37.pyc │ └── resnet32_dcf_bsensemble.cpython-37.pyc ├── ensemble_layers.py ├── resnet18_dcf_bsensemble_imgnet.py └── resnet32_dcf_bsensemble.py ├── train_dcf_c100.sh ├── train_dcf_img100.sh ├── train_dcfens_cifar100_CI.py ├── train_dcfens_imgnet100_CI.py └── utils.py /Datasets/imagenet100_s1993.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZichenMiao/CL_Atom_Swapping/HEAD/Datasets/imagenet100_s1993.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZichenMiao/CL_Atom_Swapping/HEAD/README.md -------------------------------------------------------------------------------- /figures/Class_Incremental_Results.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZichenMiao/CL_Atom_Swapping/HEAD/figures/Class_Incremental_Results.jpg -------------------------------------------------------------------------------- /idatasets/__pycache__/imagenet_100.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZichenMiao/CL_Atom_Swapping/HEAD/idatasets/__pycache__/imagenet_100.cpython-37.pyc -------------------------------------------------------------------------------- /idatasets/imagenet_100.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZichenMiao/CL_Atom_Swapping/HEAD/idatasets/imagenet_100.py -------------------------------------------------------------------------------- /incremental_dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZichenMiao/CL_Atom_Swapping/HEAD/incremental_dataloader.py -------------------------------------------------------------------------------- /logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZichenMiao/CL_Atom_Swapping/HEAD/logger.py -------------------------------------------------------------------------------- /models/Conv_DCFE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZichenMiao/CL_Atom_Swapping/HEAD/models/Conv_DCFE.py -------------------------------------------------------------------------------- /models/__pycache__/Conv_DCFE.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZichenMiao/CL_Atom_Swapping/HEAD/models/__pycache__/Conv_DCFE.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/ensemble_layers.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZichenMiao/CL_Atom_Swapping/HEAD/models/__pycache__/ensemble_layers.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/resnet18_dcf_bsensemble_imgnet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZichenMiao/CL_Atom_Swapping/HEAD/models/__pycache__/resnet18_dcf_bsensemble_imgnet.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/resnet32_dcf_bsensemble.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZichenMiao/CL_Atom_Swapping/HEAD/models/__pycache__/resnet32_dcf_bsensemble.cpython-37.pyc -------------------------------------------------------------------------------- /models/ensemble_layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZichenMiao/CL_Atom_Swapping/HEAD/models/ensemble_layers.py -------------------------------------------------------------------------------- /models/resnet18_dcf_bsensemble_imgnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZichenMiao/CL_Atom_Swapping/HEAD/models/resnet18_dcf_bsensemble_imgnet.py -------------------------------------------------------------------------------- /models/resnet32_dcf_bsensemble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZichenMiao/CL_Atom_Swapping/HEAD/models/resnet32_dcf_bsensemble.py -------------------------------------------------------------------------------- /train_dcf_c100.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZichenMiao/CL_Atom_Swapping/HEAD/train_dcf_c100.sh -------------------------------------------------------------------------------- /train_dcf_img100.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZichenMiao/CL_Atom_Swapping/HEAD/train_dcf_img100.sh -------------------------------------------------------------------------------- /train_dcfens_cifar100_CI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZichenMiao/CL_Atom_Swapping/HEAD/train_dcfens_cifar100_CI.py -------------------------------------------------------------------------------- /train_dcfens_imgnet100_CI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZichenMiao/CL_Atom_Swapping/HEAD/train_dcfens_imgnet100_CI.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZichenMiao/CL_Atom_Swapping/HEAD/utils.py --------------------------------------------------------------------------------