├── README.md ├── distillation └── distillation.py ├── function ├── dataset.py └── logger.py ├── model └── models.py ├── sigma ├── find_knowledge_new.py └── train_sigma.py ├── supplement ├── distillation_supplement.py └── train_net_supplement.py └── train_net └── train_net.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jenniferlyx/Explaining-Knowledge-Distillation-by-Quantifying-the-Knowledge/HEAD/README.md -------------------------------------------------------------------------------- /distillation/distillation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jenniferlyx/Explaining-Knowledge-Distillation-by-Quantifying-the-Knowledge/HEAD/distillation/distillation.py -------------------------------------------------------------------------------- /function/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jenniferlyx/Explaining-Knowledge-Distillation-by-Quantifying-the-Knowledge/HEAD/function/dataset.py -------------------------------------------------------------------------------- /function/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jenniferlyx/Explaining-Knowledge-Distillation-by-Quantifying-the-Knowledge/HEAD/function/logger.py -------------------------------------------------------------------------------- /model/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jenniferlyx/Explaining-Knowledge-Distillation-by-Quantifying-the-Knowledge/HEAD/model/models.py -------------------------------------------------------------------------------- /sigma/find_knowledge_new.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jenniferlyx/Explaining-Knowledge-Distillation-by-Quantifying-the-Knowledge/HEAD/sigma/find_knowledge_new.py -------------------------------------------------------------------------------- /sigma/train_sigma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jenniferlyx/Explaining-Knowledge-Distillation-by-Quantifying-the-Knowledge/HEAD/sigma/train_sigma.py -------------------------------------------------------------------------------- /supplement/distillation_supplement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jenniferlyx/Explaining-Knowledge-Distillation-by-Quantifying-the-Knowledge/HEAD/supplement/distillation_supplement.py -------------------------------------------------------------------------------- /supplement/train_net_supplement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jenniferlyx/Explaining-Knowledge-Distillation-by-Quantifying-the-Knowledge/HEAD/supplement/train_net_supplement.py -------------------------------------------------------------------------------- /train_net/train_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jenniferlyx/Explaining-Knowledge-Distillation-by-Quantifying-the-Knowledge/HEAD/train_net/train_net.py --------------------------------------------------------------------------------