├── LICENSE ├── LIRA_largescale.py ├── LIRA_smallscale.py ├── README.md ├── figs ├── framework.png ├── motivation.png └── result_small_scale.png ├── model_probing.py ├── requirements.txt └── utils.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneZeng/LIRA-ANN-search/HEAD/LICENSE -------------------------------------------------------------------------------- /LIRA_largescale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneZeng/LIRA-ANN-search/HEAD/LIRA_largescale.py -------------------------------------------------------------------------------- /LIRA_smallscale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneZeng/LIRA-ANN-search/HEAD/LIRA_smallscale.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneZeng/LIRA-ANN-search/HEAD/README.md -------------------------------------------------------------------------------- /figs/framework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneZeng/LIRA-ANN-search/HEAD/figs/framework.png -------------------------------------------------------------------------------- /figs/motivation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneZeng/LIRA-ANN-search/HEAD/figs/motivation.png -------------------------------------------------------------------------------- /figs/result_small_scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneZeng/LIRA-ANN-search/HEAD/figs/result_small_scale.png -------------------------------------------------------------------------------- /model_probing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneZeng/LIRA-ANN-search/HEAD/model_probing.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | faiss-cpu==1.9.0 2 | scikit-learn 3 | tqdm 4 | h5py 5 | -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimoneZeng/LIRA-ANN-search/HEAD/utils.py --------------------------------------------------------------------------------