├── DI └── DI-1.mat ├── Data_Impressions.py ├── README.md ├── autotrain.py ├── concentrate.png ├── nets ├── Distillation.py ├── Lenet5.py ├── Lenet5_half.py └── nets_factory.py ├── op_util.py ├── pre_trained └── Lenet5.mat ├── samples.png ├── train_w_distill.py └── visualization.py /DI/DI-1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sseung0703/Zero-shot_Knowledge_Distillation/HEAD/DI/DI-1.mat -------------------------------------------------------------------------------- /Data_Impressions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sseung0703/Zero-shot_Knowledge_Distillation/HEAD/Data_Impressions.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sseung0703/Zero-shot_Knowledge_Distillation/HEAD/README.md -------------------------------------------------------------------------------- /autotrain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sseung0703/Zero-shot_Knowledge_Distillation/HEAD/autotrain.py -------------------------------------------------------------------------------- /concentrate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sseung0703/Zero-shot_Knowledge_Distillation/HEAD/concentrate.png -------------------------------------------------------------------------------- /nets/Distillation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sseung0703/Zero-shot_Knowledge_Distillation/HEAD/nets/Distillation.py -------------------------------------------------------------------------------- /nets/Lenet5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sseung0703/Zero-shot_Knowledge_Distillation/HEAD/nets/Lenet5.py -------------------------------------------------------------------------------- /nets/Lenet5_half.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sseung0703/Zero-shot_Knowledge_Distillation/HEAD/nets/Lenet5_half.py -------------------------------------------------------------------------------- /nets/nets_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sseung0703/Zero-shot_Knowledge_Distillation/HEAD/nets/nets_factory.py -------------------------------------------------------------------------------- /op_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sseung0703/Zero-shot_Knowledge_Distillation/HEAD/op_util.py -------------------------------------------------------------------------------- /pre_trained/Lenet5.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sseung0703/Zero-shot_Knowledge_Distillation/HEAD/pre_trained/Lenet5.mat -------------------------------------------------------------------------------- /samples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sseung0703/Zero-shot_Knowledge_Distillation/HEAD/samples.png -------------------------------------------------------------------------------- /train_w_distill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sseung0703/Zero-shot_Knowledge_Distillation/HEAD/train_w_distill.py -------------------------------------------------------------------------------- /visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sseung0703/Zero-shot_Knowledge_Distillation/HEAD/visualization.py --------------------------------------------------------------------------------