├── LICENSE ├── README.md ├── code ├── dataset │ ├── Inshop.py │ ├── SOP.py │ ├── __init__.py │ ├── base.py │ ├── cars.py │ ├── cub.py │ ├── sampler.py │ └── utils.py ├── evaluate.py ├── losses.py ├── net │ ├── bn_inception.py │ ├── googlenet.py │ └── resnet.py ├── train.py └── utils.py ├── data └── .gitkeep ├── logs └── .gitkeep └── misc └── Recall_Trainingtime.jpg /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sung-yeon-kim/Proxy-Anchor-CVPR2020/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sung-yeon-kim/Proxy-Anchor-CVPR2020/HEAD/README.md -------------------------------------------------------------------------------- /code/dataset/Inshop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sung-yeon-kim/Proxy-Anchor-CVPR2020/HEAD/code/dataset/Inshop.py -------------------------------------------------------------------------------- /code/dataset/SOP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sung-yeon-kim/Proxy-Anchor-CVPR2020/HEAD/code/dataset/SOP.py -------------------------------------------------------------------------------- /code/dataset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sung-yeon-kim/Proxy-Anchor-CVPR2020/HEAD/code/dataset/__init__.py -------------------------------------------------------------------------------- /code/dataset/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sung-yeon-kim/Proxy-Anchor-CVPR2020/HEAD/code/dataset/base.py -------------------------------------------------------------------------------- /code/dataset/cars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sung-yeon-kim/Proxy-Anchor-CVPR2020/HEAD/code/dataset/cars.py -------------------------------------------------------------------------------- /code/dataset/cub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sung-yeon-kim/Proxy-Anchor-CVPR2020/HEAD/code/dataset/cub.py -------------------------------------------------------------------------------- /code/dataset/sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sung-yeon-kim/Proxy-Anchor-CVPR2020/HEAD/code/dataset/sampler.py -------------------------------------------------------------------------------- /code/dataset/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sung-yeon-kim/Proxy-Anchor-CVPR2020/HEAD/code/dataset/utils.py -------------------------------------------------------------------------------- /code/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sung-yeon-kim/Proxy-Anchor-CVPR2020/HEAD/code/evaluate.py -------------------------------------------------------------------------------- /code/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sung-yeon-kim/Proxy-Anchor-CVPR2020/HEAD/code/losses.py -------------------------------------------------------------------------------- /code/net/bn_inception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sung-yeon-kim/Proxy-Anchor-CVPR2020/HEAD/code/net/bn_inception.py -------------------------------------------------------------------------------- /code/net/googlenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sung-yeon-kim/Proxy-Anchor-CVPR2020/HEAD/code/net/googlenet.py -------------------------------------------------------------------------------- /code/net/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sung-yeon-kim/Proxy-Anchor-CVPR2020/HEAD/code/net/resnet.py -------------------------------------------------------------------------------- /code/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sung-yeon-kim/Proxy-Anchor-CVPR2020/HEAD/code/train.py -------------------------------------------------------------------------------- /code/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sung-yeon-kim/Proxy-Anchor-CVPR2020/HEAD/code/utils.py -------------------------------------------------------------------------------- /data/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /logs/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /misc/Recall_Trainingtime.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sung-yeon-kim/Proxy-Anchor-CVPR2020/HEAD/misc/Recall_Trainingtime.jpg --------------------------------------------------------------------------------