├── .gitignore ├── Images └── vgg_network_last.png ├── README.md ├── configs └── config.yaml ├── dataloader.py ├── loss_functions.py ├── models └── network.py ├── requirements.txt ├── test.py ├── test_functions.py ├── train.py └── utils └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Niousha12/Knowledge_Distillation_AD/HEAD/.gitignore -------------------------------------------------------------------------------- /Images/vgg_network_last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Niousha12/Knowledge_Distillation_AD/HEAD/Images/vgg_network_last.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Niousha12/Knowledge_Distillation_AD/HEAD/README.md -------------------------------------------------------------------------------- /configs/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Niousha12/Knowledge_Distillation_AD/HEAD/configs/config.yaml -------------------------------------------------------------------------------- /dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Niousha12/Knowledge_Distillation_AD/HEAD/dataloader.py -------------------------------------------------------------------------------- /loss_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Niousha12/Knowledge_Distillation_AD/HEAD/loss_functions.py -------------------------------------------------------------------------------- /models/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Niousha12/Knowledge_Distillation_AD/HEAD/models/network.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Niousha12/Knowledge_Distillation_AD/HEAD/requirements.txt -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Niousha12/Knowledge_Distillation_AD/HEAD/test.py -------------------------------------------------------------------------------- /test_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Niousha12/Knowledge_Distillation_AD/HEAD/test_functions.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Niousha12/Knowledge_Distillation_AD/HEAD/train.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Niousha12/Knowledge_Distillation_AD/HEAD/utils/utils.py --------------------------------------------------------------------------------