├── README.md ├── data.py ├── models ├── ShuffleNetv1.py ├── ShuffleNetv2.py ├── __init__.py ├── __pycache__ │ ├── ShuffleNetv1.cpython-36.pyc │ ├── ShuffleNetv2.cpython-36.pyc │ ├── __init__.cpython-36.pyc │ ├── mobilenetv2.cpython-36.pyc │ ├── resnet.cpython-36.pyc │ ├── resnetv2.cpython-36.pyc │ ├── vgg.cpython-36.pyc │ └── wrn.cpython-36.pyc ├── mobilenetv2.py ├── resnet.py ├── resnetv2.py ├── vgg.py └── wrn.py ├── run_distill.sh ├── train.py └── utils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaoeric/Online-Knowledge-Distillation-via-Collaborative-Learning/HEAD/README.md -------------------------------------------------------------------------------- /data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaoeric/Online-Knowledge-Distillation-via-Collaborative-Learning/HEAD/data.py -------------------------------------------------------------------------------- /models/ShuffleNetv1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaoeric/Online-Knowledge-Distillation-via-Collaborative-Learning/HEAD/models/ShuffleNetv1.py -------------------------------------------------------------------------------- /models/ShuffleNetv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaoeric/Online-Knowledge-Distillation-via-Collaborative-Learning/HEAD/models/ShuffleNetv2.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaoeric/Online-Knowledge-Distillation-via-Collaborative-Learning/HEAD/models/__init__.py -------------------------------------------------------------------------------- /models/__pycache__/ShuffleNetv1.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaoeric/Online-Knowledge-Distillation-via-Collaborative-Learning/HEAD/models/__pycache__/ShuffleNetv1.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/ShuffleNetv2.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaoeric/Online-Knowledge-Distillation-via-Collaborative-Learning/HEAD/models/__pycache__/ShuffleNetv2.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaoeric/Online-Knowledge-Distillation-via-Collaborative-Learning/HEAD/models/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/mobilenetv2.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaoeric/Online-Knowledge-Distillation-via-Collaborative-Learning/HEAD/models/__pycache__/mobilenetv2.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/resnet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaoeric/Online-Knowledge-Distillation-via-Collaborative-Learning/HEAD/models/__pycache__/resnet.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/resnetv2.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaoeric/Online-Knowledge-Distillation-via-Collaborative-Learning/HEAD/models/__pycache__/resnetv2.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/vgg.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaoeric/Online-Knowledge-Distillation-via-Collaborative-Learning/HEAD/models/__pycache__/vgg.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/wrn.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaoeric/Online-Knowledge-Distillation-via-Collaborative-Learning/HEAD/models/__pycache__/wrn.cpython-36.pyc -------------------------------------------------------------------------------- /models/mobilenetv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaoeric/Online-Knowledge-Distillation-via-Collaborative-Learning/HEAD/models/mobilenetv2.py -------------------------------------------------------------------------------- /models/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaoeric/Online-Knowledge-Distillation-via-Collaborative-Learning/HEAD/models/resnet.py -------------------------------------------------------------------------------- /models/resnetv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaoeric/Online-Knowledge-Distillation-via-Collaborative-Learning/HEAD/models/resnetv2.py -------------------------------------------------------------------------------- /models/vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaoeric/Online-Knowledge-Distillation-via-Collaborative-Learning/HEAD/models/vgg.py -------------------------------------------------------------------------------- /models/wrn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaoeric/Online-Knowledge-Distillation-via-Collaborative-Learning/HEAD/models/wrn.py -------------------------------------------------------------------------------- /run_distill.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaoeric/Online-Knowledge-Distillation-via-Collaborative-Learning/HEAD/run_distill.sh -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaoeric/Online-Knowledge-Distillation-via-Collaborative-Learning/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaoeric/Online-Knowledge-Distillation-via-Collaborative-Learning/HEAD/utils.py --------------------------------------------------------------------------------