├── README.md ├── cifar.py ├── command.sh ├── frm.png ├── models ├── ShuffleNetv1.py ├── ShuffleNetv2.py ├── __init__.py ├── classifier.py ├── mobilenetv2.py ├── resnet.py ├── resnetv2.py ├── util.py ├── vgg.py └── wrn.py ├── student.py ├── teacher.py ├── utils.py └── wrapper.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuguodong03/SSKD/HEAD/README.md -------------------------------------------------------------------------------- /cifar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuguodong03/SSKD/HEAD/cifar.py -------------------------------------------------------------------------------- /command.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuguodong03/SSKD/HEAD/command.sh -------------------------------------------------------------------------------- /frm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuguodong03/SSKD/HEAD/frm.png -------------------------------------------------------------------------------- /models/ShuffleNetv1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuguodong03/SSKD/HEAD/models/ShuffleNetv1.py -------------------------------------------------------------------------------- /models/ShuffleNetv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuguodong03/SSKD/HEAD/models/ShuffleNetv2.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuguodong03/SSKD/HEAD/models/__init__.py -------------------------------------------------------------------------------- /models/classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuguodong03/SSKD/HEAD/models/classifier.py -------------------------------------------------------------------------------- /models/mobilenetv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuguodong03/SSKD/HEAD/models/mobilenetv2.py -------------------------------------------------------------------------------- /models/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuguodong03/SSKD/HEAD/models/resnet.py -------------------------------------------------------------------------------- /models/resnetv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuguodong03/SSKD/HEAD/models/resnetv2.py -------------------------------------------------------------------------------- /models/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuguodong03/SSKD/HEAD/models/util.py -------------------------------------------------------------------------------- /models/vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuguodong03/SSKD/HEAD/models/vgg.py -------------------------------------------------------------------------------- /models/wrn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuguodong03/SSKD/HEAD/models/wrn.py -------------------------------------------------------------------------------- /student.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuguodong03/SSKD/HEAD/student.py -------------------------------------------------------------------------------- /teacher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuguodong03/SSKD/HEAD/teacher.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuguodong03/SSKD/HEAD/utils.py -------------------------------------------------------------------------------- /wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuguodong03/SSKD/HEAD/wrapper.py --------------------------------------------------------------------------------