├── .gitignore ├── LICENSE ├── README.md ├── compute_ap.cpp ├── crow.py ├── evaluate.py ├── extract_features.py ├── extract_queries.py ├── oxford └── get_oxford.sh ├── paris └── get_paris.sh ├── requirements.txt └── vgg ├── VGG_ILSVRC_16_pool5.prototxt └── get_vgg.sh /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.pyc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/crow/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/crow/HEAD/README.md -------------------------------------------------------------------------------- /compute_ap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/crow/HEAD/compute_ap.cpp -------------------------------------------------------------------------------- /crow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/crow/HEAD/crow.py -------------------------------------------------------------------------------- /evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/crow/HEAD/evaluate.py -------------------------------------------------------------------------------- /extract_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/crow/HEAD/extract_features.py -------------------------------------------------------------------------------- /extract_queries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/crow/HEAD/extract_queries.py -------------------------------------------------------------------------------- /oxford/get_oxford.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/crow/HEAD/oxford/get_oxford.sh -------------------------------------------------------------------------------- /paris/get_paris.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/crow/HEAD/paris/get_paris.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/crow/HEAD/requirements.txt -------------------------------------------------------------------------------- /vgg/VGG_ILSVRC_16_pool5.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/crow/HEAD/vgg/VGG_ILSVRC_16_pool5.prototxt -------------------------------------------------------------------------------- /vgg/get_vgg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YahooArchive/crow/HEAD/vgg/get_vgg.sh --------------------------------------------------------------------------------