├── .gitignore ├── README.md ├── framework.png ├── net ├── Distillation.py ├── feature_distill.py ├── module.py ├── resnet.py ├── unet.py └── utils.py └── utils ├── kmeans.py ├── losses.py ├── post_process.py ├── prepare_data.py ├── prepare_segs.py ├── prepare_segs_utils.py └── summary.py /.gitignore: -------------------------------------------------------------------------------- 1 | # test module 个人习惯,测试目录去掉 2 | tools/ 3 | pre_weight/ 4 | *.t7 5 | *.sh 6 | experiments/ 7 | network/ 8 | results/ 9 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcwang123/Separate_CL/HEAD/README.md -------------------------------------------------------------------------------- /framework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcwang123/Separate_CL/HEAD/framework.png -------------------------------------------------------------------------------- /net/Distillation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcwang123/Separate_CL/HEAD/net/Distillation.py -------------------------------------------------------------------------------- /net/feature_distill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcwang123/Separate_CL/HEAD/net/feature_distill.py -------------------------------------------------------------------------------- /net/module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcwang123/Separate_CL/HEAD/net/module.py -------------------------------------------------------------------------------- /net/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcwang123/Separate_CL/HEAD/net/resnet.py -------------------------------------------------------------------------------- /net/unet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcwang123/Separate_CL/HEAD/net/unet.py -------------------------------------------------------------------------------- /net/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcwang123/Separate_CL/HEAD/net/utils.py -------------------------------------------------------------------------------- /utils/kmeans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcwang123/Separate_CL/HEAD/utils/kmeans.py -------------------------------------------------------------------------------- /utils/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcwang123/Separate_CL/HEAD/utils/losses.py -------------------------------------------------------------------------------- /utils/post_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcwang123/Separate_CL/HEAD/utils/post_process.py -------------------------------------------------------------------------------- /utils/prepare_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcwang123/Separate_CL/HEAD/utils/prepare_data.py -------------------------------------------------------------------------------- /utils/prepare_segs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcwang123/Separate_CL/HEAD/utils/prepare_segs.py -------------------------------------------------------------------------------- /utils/prepare_segs_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcwang123/Separate_CL/HEAD/utils/prepare_segs_utils.py -------------------------------------------------------------------------------- /utils/summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcwang123/Separate_CL/HEAD/utils/summary.py --------------------------------------------------------------------------------