├── LICENSE ├── README.md ├── imbalance_cifar.py ├── losses.py ├── models ├── __init__.py └── resnet_cifar.py ├── train_student.py ├── train_teacher.py └── utils.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricZsy/BalancedKnowledgeDistillation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricZsy/BalancedKnowledgeDistillation/HEAD/README.md -------------------------------------------------------------------------------- /imbalance_cifar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricZsy/BalancedKnowledgeDistillation/HEAD/imbalance_cifar.py -------------------------------------------------------------------------------- /losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricZsy/BalancedKnowledgeDistillation/HEAD/losses.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | from .resnet_cifar import * -------------------------------------------------------------------------------- /models/resnet_cifar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricZsy/BalancedKnowledgeDistillation/HEAD/models/resnet_cifar.py -------------------------------------------------------------------------------- /train_student.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricZsy/BalancedKnowledgeDistillation/HEAD/train_student.py -------------------------------------------------------------------------------- /train_teacher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricZsy/BalancedKnowledgeDistillation/HEAD/train_teacher.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricZsy/BalancedKnowledgeDistillation/HEAD/utils.py --------------------------------------------------------------------------------