├── LICENSE ├── README.md ├── configs └── resnet101_delg_8gpu.yaml ├── core ├── __init__.py ├── benchmark.py ├── builders.py ├── checkpoint.py ├── config.py ├── distributed.py ├── io.py ├── logging.py ├── meters.py ├── model │ ├── dolg_model.py │ └── resnet.py ├── net.py ├── optimizer.py ├── timer.py └── trainer.py ├── datasets ├── __init__.py ├── commondataset.py ├── data │ └── landmark ├── loader.py └── transforms.py ├── evaler ├── infer.py ├── process.py ├── run.sh └── util.py ├── imgs ├── DATA.md ├── figure2.pdf ├── figure2.png ├── orthogo.pdf ├── result1.png ├── result2.png ├── result3.png └── result4.png ├── init_path.py ├── job.sh ├── revisitop ├── README.md ├── compute.py ├── dataset.py ├── example_evaluate.py ├── features │ ├── roxford5k_fea.pickle │ └── rparis6k_fea.pickle ├── groundtruth │ ├── gnd_roxford5k.pkl │ └── gnd_rparis6k.pkl └── scripts │ └── download.sh └── train.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanzeyy/DOLG-instance-retrieval/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanzeyy/DOLG-instance-retrieval/HEAD/README.md -------------------------------------------------------------------------------- /configs/resnet101_delg_8gpu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanzeyy/DOLG-instance-retrieval/HEAD/configs/resnet101_delg_8gpu.yaml -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanzeyy/DOLG-instance-retrieval/HEAD/core/benchmark.py -------------------------------------------------------------------------------- /core/builders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanzeyy/DOLG-instance-retrieval/HEAD/core/builders.py -------------------------------------------------------------------------------- /core/checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanzeyy/DOLG-instance-retrieval/HEAD/core/checkpoint.py -------------------------------------------------------------------------------- /core/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanzeyy/DOLG-instance-retrieval/HEAD/core/config.py -------------------------------------------------------------------------------- /core/distributed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanzeyy/DOLG-instance-retrieval/HEAD/core/distributed.py -------------------------------------------------------------------------------- /core/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanzeyy/DOLG-instance-retrieval/HEAD/core/io.py -------------------------------------------------------------------------------- /core/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanzeyy/DOLG-instance-retrieval/HEAD/core/logging.py -------------------------------------------------------------------------------- /core/meters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanzeyy/DOLG-instance-retrieval/HEAD/core/meters.py -------------------------------------------------------------------------------- /core/model/dolg_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanzeyy/DOLG-instance-retrieval/HEAD/core/model/dolg_model.py -------------------------------------------------------------------------------- /core/model/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanzeyy/DOLG-instance-retrieval/HEAD/core/model/resnet.py -------------------------------------------------------------------------------- /core/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanzeyy/DOLG-instance-retrieval/HEAD/core/net.py -------------------------------------------------------------------------------- /core/optimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanzeyy/DOLG-instance-retrieval/HEAD/core/optimizer.py -------------------------------------------------------------------------------- /core/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanzeyy/DOLG-instance-retrieval/HEAD/core/timer.py -------------------------------------------------------------------------------- /core/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanzeyy/DOLG-instance-retrieval/HEAD/core/trainer.py -------------------------------------------------------------------------------- /datasets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /datasets/commondataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanzeyy/DOLG-instance-retrieval/HEAD/datasets/commondataset.py -------------------------------------------------------------------------------- /datasets/data/landmark: -------------------------------------------------------------------------------- 1 | ../../../revisitop/ -------------------------------------------------------------------------------- /datasets/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanzeyy/DOLG-instance-retrieval/HEAD/datasets/loader.py -------------------------------------------------------------------------------- /datasets/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanzeyy/DOLG-instance-retrieval/HEAD/datasets/transforms.py -------------------------------------------------------------------------------- /evaler/infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanzeyy/DOLG-instance-retrieval/HEAD/evaler/infer.py -------------------------------------------------------------------------------- /evaler/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanzeyy/DOLG-instance-retrieval/HEAD/evaler/process.py -------------------------------------------------------------------------------- /evaler/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanzeyy/DOLG-instance-retrieval/HEAD/evaler/run.sh -------------------------------------------------------------------------------- /evaler/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanzeyy/DOLG-instance-retrieval/HEAD/evaler/util.py -------------------------------------------------------------------------------- /imgs/DATA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanzeyy/DOLG-instance-retrieval/HEAD/imgs/DATA.md -------------------------------------------------------------------------------- /imgs/figure2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanzeyy/DOLG-instance-retrieval/HEAD/imgs/figure2.pdf -------------------------------------------------------------------------------- /imgs/figure2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanzeyy/DOLG-instance-retrieval/HEAD/imgs/figure2.png -------------------------------------------------------------------------------- /imgs/orthogo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanzeyy/DOLG-instance-retrieval/HEAD/imgs/orthogo.pdf -------------------------------------------------------------------------------- /imgs/result1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanzeyy/DOLG-instance-retrieval/HEAD/imgs/result1.png -------------------------------------------------------------------------------- /imgs/result2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanzeyy/DOLG-instance-retrieval/HEAD/imgs/result2.png -------------------------------------------------------------------------------- /imgs/result3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanzeyy/DOLG-instance-retrieval/HEAD/imgs/result3.png -------------------------------------------------------------------------------- /imgs/result4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanzeyy/DOLG-instance-retrieval/HEAD/imgs/result4.png -------------------------------------------------------------------------------- /init_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanzeyy/DOLG-instance-retrieval/HEAD/init_path.py -------------------------------------------------------------------------------- /job.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanzeyy/DOLG-instance-retrieval/HEAD/job.sh -------------------------------------------------------------------------------- /revisitop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanzeyy/DOLG-instance-retrieval/HEAD/revisitop/README.md -------------------------------------------------------------------------------- /revisitop/compute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanzeyy/DOLG-instance-retrieval/HEAD/revisitop/compute.py -------------------------------------------------------------------------------- /revisitop/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanzeyy/DOLG-instance-retrieval/HEAD/revisitop/dataset.py -------------------------------------------------------------------------------- /revisitop/example_evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanzeyy/DOLG-instance-retrieval/HEAD/revisitop/example_evaluate.py -------------------------------------------------------------------------------- /revisitop/features/roxford5k_fea.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanzeyy/DOLG-instance-retrieval/HEAD/revisitop/features/roxford5k_fea.pickle -------------------------------------------------------------------------------- /revisitop/features/rparis6k_fea.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanzeyy/DOLG-instance-retrieval/HEAD/revisitop/features/rparis6k_fea.pickle -------------------------------------------------------------------------------- /revisitop/groundtruth/gnd_roxford5k.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanzeyy/DOLG-instance-retrieval/HEAD/revisitop/groundtruth/gnd_roxford5k.pkl -------------------------------------------------------------------------------- /revisitop/groundtruth/gnd_rparis6k.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanzeyy/DOLG-instance-retrieval/HEAD/revisitop/groundtruth/gnd_rparis6k.pkl -------------------------------------------------------------------------------- /revisitop/scripts/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanzeyy/DOLG-instance-retrieval/HEAD/revisitop/scripts/download.sh -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanzeyy/DOLG-instance-retrieval/HEAD/train.py --------------------------------------------------------------------------------