├── .gitignore ├── .idea ├── .gitignore ├── Knowledge-Distillation-Zoo.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── 03287-Poster.jpg ├── 03287-Poster.pdf ├── 03287.mp4 ├── README.md ├── _config.yml ├── index.md ├── kd_losses ├── __init__.py ├── ab.py ├── afd.py ├── at.py ├── bss.py ├── cc.py ├── crd.py ├── dml.py ├── fitnet.py ├── fsp.py ├── ft.py ├── irg.py ├── logits.py ├── lwm.py ├── nst.py ├── ofd.py ├── pkt.py ├── rkd.py ├── sobolev.py ├── sp.py ├── st.py └── vid.py ├── network.py ├── train_kd.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lliai/Teacher-free-Distillation/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lliai/Teacher-free-Distillation/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/Knowledge-Distillation-Zoo.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lliai/Teacher-free-Distillation/HEAD/.idea/Knowledge-Distillation-Zoo.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lliai/Teacher-free-Distillation/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lliai/Teacher-free-Distillation/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lliai/Teacher-free-Distillation/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lliai/Teacher-free-Distillation/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /03287-Poster.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lliai/Teacher-free-Distillation/HEAD/03287-Poster.jpg -------------------------------------------------------------------------------- /03287-Poster.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lliai/Teacher-free-Distillation/HEAD/03287-Poster.pdf -------------------------------------------------------------------------------- /03287.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lliai/Teacher-free-Distillation/HEAD/03287.mp4 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lliai/Teacher-free-Distillation/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lliai/Teacher-free-Distillation/HEAD/_config.yml -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lliai/Teacher-free-Distillation/HEAD/index.md -------------------------------------------------------------------------------- /kd_losses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lliai/Teacher-free-Distillation/HEAD/kd_losses/__init__.py -------------------------------------------------------------------------------- /kd_losses/ab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lliai/Teacher-free-Distillation/HEAD/kd_losses/ab.py -------------------------------------------------------------------------------- /kd_losses/afd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lliai/Teacher-free-Distillation/HEAD/kd_losses/afd.py -------------------------------------------------------------------------------- /kd_losses/at.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lliai/Teacher-free-Distillation/HEAD/kd_losses/at.py -------------------------------------------------------------------------------- /kd_losses/bss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lliai/Teacher-free-Distillation/HEAD/kd_losses/bss.py -------------------------------------------------------------------------------- /kd_losses/cc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lliai/Teacher-free-Distillation/HEAD/kd_losses/cc.py -------------------------------------------------------------------------------- /kd_losses/crd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lliai/Teacher-free-Distillation/HEAD/kd_losses/crd.py -------------------------------------------------------------------------------- /kd_losses/dml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lliai/Teacher-free-Distillation/HEAD/kd_losses/dml.py -------------------------------------------------------------------------------- /kd_losses/fitnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lliai/Teacher-free-Distillation/HEAD/kd_losses/fitnet.py -------------------------------------------------------------------------------- /kd_losses/fsp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lliai/Teacher-free-Distillation/HEAD/kd_losses/fsp.py -------------------------------------------------------------------------------- /kd_losses/ft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lliai/Teacher-free-Distillation/HEAD/kd_losses/ft.py -------------------------------------------------------------------------------- /kd_losses/irg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lliai/Teacher-free-Distillation/HEAD/kd_losses/irg.py -------------------------------------------------------------------------------- /kd_losses/logits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lliai/Teacher-free-Distillation/HEAD/kd_losses/logits.py -------------------------------------------------------------------------------- /kd_losses/lwm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lliai/Teacher-free-Distillation/HEAD/kd_losses/lwm.py -------------------------------------------------------------------------------- /kd_losses/nst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lliai/Teacher-free-Distillation/HEAD/kd_losses/nst.py -------------------------------------------------------------------------------- /kd_losses/ofd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lliai/Teacher-free-Distillation/HEAD/kd_losses/ofd.py -------------------------------------------------------------------------------- /kd_losses/pkt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lliai/Teacher-free-Distillation/HEAD/kd_losses/pkt.py -------------------------------------------------------------------------------- /kd_losses/rkd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lliai/Teacher-free-Distillation/HEAD/kd_losses/rkd.py -------------------------------------------------------------------------------- /kd_losses/sobolev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lliai/Teacher-free-Distillation/HEAD/kd_losses/sobolev.py -------------------------------------------------------------------------------- /kd_losses/sp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lliai/Teacher-free-Distillation/HEAD/kd_losses/sp.py -------------------------------------------------------------------------------- /kd_losses/st.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lliai/Teacher-free-Distillation/HEAD/kd_losses/st.py -------------------------------------------------------------------------------- /kd_losses/vid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lliai/Teacher-free-Distillation/HEAD/kd_losses/vid.py -------------------------------------------------------------------------------- /network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lliai/Teacher-free-Distillation/HEAD/network.py -------------------------------------------------------------------------------- /train_kd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lliai/Teacher-free-Distillation/HEAD/train_kd.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lliai/Teacher-free-Distillation/HEAD/utils.py --------------------------------------------------------------------------------