├── fig └── data_scale_bar.png ├── losses ├── __init__.py ├── bkd.py ├── correlation.py ├── crd.py ├── dist.py ├── dkd.py ├── kd.py ├── review.py └── rkd.py ├── models ├── __init__.py ├── beit.py └── convnextv2.py ├── object_detection ├── README.md ├── configs │ ├── convnextv2 │ │ ├── cascade_mask_rcnn_convnextv2_3x_coco.py │ │ └── mask_rcnn_convnextv2_3x_coco.py │ └── resnet │ │ └── mask_rcnn_r50_1x_coco.py └── mmdet │ └── models │ └── backbones │ ├── __init__.py │ └── convnextv2.py ├── readme.md ├── register.py ├── requirements.txt ├── train-crd.py ├── train-fd.py ├── train-kd.py ├── utils.py └── validate.py /fig/data_scale_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hao840/vanillaKD/HEAD/fig/data_scale_bar.png -------------------------------------------------------------------------------- /losses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hao840/vanillaKD/HEAD/losses/__init__.py -------------------------------------------------------------------------------- /losses/bkd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hao840/vanillaKD/HEAD/losses/bkd.py -------------------------------------------------------------------------------- /losses/correlation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hao840/vanillaKD/HEAD/losses/correlation.py -------------------------------------------------------------------------------- /losses/crd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hao840/vanillaKD/HEAD/losses/crd.py -------------------------------------------------------------------------------- /losses/dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hao840/vanillaKD/HEAD/losses/dist.py -------------------------------------------------------------------------------- /losses/dkd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hao840/vanillaKD/HEAD/losses/dkd.py -------------------------------------------------------------------------------- /losses/kd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hao840/vanillaKD/HEAD/losses/kd.py -------------------------------------------------------------------------------- /losses/review.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hao840/vanillaKD/HEAD/losses/review.py -------------------------------------------------------------------------------- /losses/rkd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hao840/vanillaKD/HEAD/losses/rkd.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hao840/vanillaKD/HEAD/models/__init__.py -------------------------------------------------------------------------------- /models/beit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hao840/vanillaKD/HEAD/models/beit.py -------------------------------------------------------------------------------- /models/convnextv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hao840/vanillaKD/HEAD/models/convnextv2.py -------------------------------------------------------------------------------- /object_detection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hao840/vanillaKD/HEAD/object_detection/README.md -------------------------------------------------------------------------------- /object_detection/configs/convnextv2/cascade_mask_rcnn_convnextv2_3x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hao840/vanillaKD/HEAD/object_detection/configs/convnextv2/cascade_mask_rcnn_convnextv2_3x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/convnextv2/mask_rcnn_convnextv2_3x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hao840/vanillaKD/HEAD/object_detection/configs/convnextv2/mask_rcnn_convnextv2_3x_coco.py -------------------------------------------------------------------------------- /object_detection/configs/resnet/mask_rcnn_r50_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hao840/vanillaKD/HEAD/object_detection/configs/resnet/mask_rcnn_r50_1x_coco.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/backbones/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hao840/vanillaKD/HEAD/object_detection/mmdet/models/backbones/__init__.py -------------------------------------------------------------------------------- /object_detection/mmdet/models/backbones/convnextv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hao840/vanillaKD/HEAD/object_detection/mmdet/models/backbones/convnextv2.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hao840/vanillaKD/HEAD/readme.md -------------------------------------------------------------------------------- /register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hao840/vanillaKD/HEAD/register.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hao840/vanillaKD/HEAD/requirements.txt -------------------------------------------------------------------------------- /train-crd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hao840/vanillaKD/HEAD/train-crd.py -------------------------------------------------------------------------------- /train-fd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hao840/vanillaKD/HEAD/train-fd.py -------------------------------------------------------------------------------- /train-kd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hao840/vanillaKD/HEAD/train-kd.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hao840/vanillaKD/HEAD/utils.py -------------------------------------------------------------------------------- /validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hao840/vanillaKD/HEAD/validate.py --------------------------------------------------------------------------------