├── README.md ├── SKT_distill.py ├── SKT_distill.sh ├── dataset.py ├── image.py ├── models ├── __init__.py ├── distillation.py ├── model_student_vgg.py ├── model_teacher_vgg.py └── model_vgg.py ├── preprocess ├── ShanghaiTech_GT_generation.py ├── UCF_GT_generation.py ├── make_json.py └── part_A_val.json ├── test.py ├── test.sh └── utils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen-judge/SKT/HEAD/README.md -------------------------------------------------------------------------------- /SKT_distill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen-judge/SKT/HEAD/SKT_distill.py -------------------------------------------------------------------------------- /SKT_distill.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen-judge/SKT/HEAD/SKT_distill.sh -------------------------------------------------------------------------------- /dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen-judge/SKT/HEAD/dataset.py -------------------------------------------------------------------------------- /image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen-judge/SKT/HEAD/image.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/distillation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen-judge/SKT/HEAD/models/distillation.py -------------------------------------------------------------------------------- /models/model_student_vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen-judge/SKT/HEAD/models/model_student_vgg.py -------------------------------------------------------------------------------- /models/model_teacher_vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen-judge/SKT/HEAD/models/model_teacher_vgg.py -------------------------------------------------------------------------------- /models/model_vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen-judge/SKT/HEAD/models/model_vgg.py -------------------------------------------------------------------------------- /preprocess/ShanghaiTech_GT_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen-judge/SKT/HEAD/preprocess/ShanghaiTech_GT_generation.py -------------------------------------------------------------------------------- /preprocess/UCF_GT_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen-judge/SKT/HEAD/preprocess/UCF_GT_generation.py -------------------------------------------------------------------------------- /preprocess/make_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen-judge/SKT/HEAD/preprocess/make_json.py -------------------------------------------------------------------------------- /preprocess/part_A_val.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen-judge/SKT/HEAD/preprocess/part_A_val.json -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen-judge/SKT/HEAD/test.py -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen-judge/SKT/HEAD/test.sh -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chen-judge/SKT/HEAD/utils.py --------------------------------------------------------------------------------