├── .gitignore ├── Modified.py ├── VILD.py ├── VILD_Train.py ├── faster_rcnn.py ├── faster_rcnn_train.py ├── imgs ├── AR.png ├── CLIP.png ├── CLIP_AP.png ├── VILD_AP.png ├── aeroplane.png ├── bicycle.png ├── expansion.png ├── faster_rcnn.jpg ├── foemula2.png ├── formula1.png └── generalization.png ├── modules ├── load_data.py └── vocDataset.py ├── nms.py ├── readme.md ├── requirements.txt ├── transforms.py └── vocDataset.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llrtt/Zero-Shot-Detection-via-Vision-and-Language-Knowledge-Distillation/HEAD/.gitignore -------------------------------------------------------------------------------- /Modified.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llrtt/Zero-Shot-Detection-via-Vision-and-Language-Knowledge-Distillation/HEAD/Modified.py -------------------------------------------------------------------------------- /VILD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llrtt/Zero-Shot-Detection-via-Vision-and-Language-Knowledge-Distillation/HEAD/VILD.py -------------------------------------------------------------------------------- /VILD_Train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llrtt/Zero-Shot-Detection-via-Vision-and-Language-Knowledge-Distillation/HEAD/VILD_Train.py -------------------------------------------------------------------------------- /faster_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llrtt/Zero-Shot-Detection-via-Vision-and-Language-Knowledge-Distillation/HEAD/faster_rcnn.py -------------------------------------------------------------------------------- /faster_rcnn_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llrtt/Zero-Shot-Detection-via-Vision-and-Language-Knowledge-Distillation/HEAD/faster_rcnn_train.py -------------------------------------------------------------------------------- /imgs/AR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llrtt/Zero-Shot-Detection-via-Vision-and-Language-Knowledge-Distillation/HEAD/imgs/AR.png -------------------------------------------------------------------------------- /imgs/CLIP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llrtt/Zero-Shot-Detection-via-Vision-and-Language-Knowledge-Distillation/HEAD/imgs/CLIP.png -------------------------------------------------------------------------------- /imgs/CLIP_AP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llrtt/Zero-Shot-Detection-via-Vision-and-Language-Knowledge-Distillation/HEAD/imgs/CLIP_AP.png -------------------------------------------------------------------------------- /imgs/VILD_AP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llrtt/Zero-Shot-Detection-via-Vision-and-Language-Knowledge-Distillation/HEAD/imgs/VILD_AP.png -------------------------------------------------------------------------------- /imgs/aeroplane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llrtt/Zero-Shot-Detection-via-Vision-and-Language-Knowledge-Distillation/HEAD/imgs/aeroplane.png -------------------------------------------------------------------------------- /imgs/bicycle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llrtt/Zero-Shot-Detection-via-Vision-and-Language-Knowledge-Distillation/HEAD/imgs/bicycle.png -------------------------------------------------------------------------------- /imgs/expansion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llrtt/Zero-Shot-Detection-via-Vision-and-Language-Knowledge-Distillation/HEAD/imgs/expansion.png -------------------------------------------------------------------------------- /imgs/faster_rcnn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llrtt/Zero-Shot-Detection-via-Vision-and-Language-Knowledge-Distillation/HEAD/imgs/faster_rcnn.jpg -------------------------------------------------------------------------------- /imgs/foemula2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llrtt/Zero-Shot-Detection-via-Vision-and-Language-Knowledge-Distillation/HEAD/imgs/foemula2.png -------------------------------------------------------------------------------- /imgs/formula1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llrtt/Zero-Shot-Detection-via-Vision-and-Language-Knowledge-Distillation/HEAD/imgs/formula1.png -------------------------------------------------------------------------------- /imgs/generalization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llrtt/Zero-Shot-Detection-via-Vision-and-Language-Knowledge-Distillation/HEAD/imgs/generalization.png -------------------------------------------------------------------------------- /modules/load_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llrtt/Zero-Shot-Detection-via-Vision-and-Language-Knowledge-Distillation/HEAD/modules/load_data.py -------------------------------------------------------------------------------- /modules/vocDataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llrtt/Zero-Shot-Detection-via-Vision-and-Language-Knowledge-Distillation/HEAD/modules/vocDataset.py -------------------------------------------------------------------------------- /nms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llrtt/Zero-Shot-Detection-via-Vision-and-Language-Knowledge-Distillation/HEAD/nms.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llrtt/Zero-Shot-Detection-via-Vision-and-Language-Knowledge-Distillation/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llrtt/Zero-Shot-Detection-via-Vision-and-Language-Knowledge-Distillation/HEAD/requirements.txt -------------------------------------------------------------------------------- /transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llrtt/Zero-Shot-Detection-via-Vision-and-Language-Knowledge-Distillation/HEAD/transforms.py -------------------------------------------------------------------------------- /vocDataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llrtt/Zero-Shot-Detection-via-Vision-and-Language-Knowledge-Distillation/HEAD/vocDataset.py --------------------------------------------------------------------------------