├── .gitattributes ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── Report ├── LSH-APG-Report.pdf └── README.md ├── cppCode └── LSH-APG │ ├── Makefile │ ├── lgo │ └── src │ ├── GenericTool.cpp │ ├── GenericTool.h │ ├── Preprocess.cpp │ ├── Preprocess.h │ ├── Query.cpp │ ├── Query.h │ ├── alg.h │ ├── basis.cpp │ ├── basis.h │ ├── def.h │ ├── distances_simd_avx512.cpp │ ├── distances_simd_avx512.h │ ├── divGraph.h │ ├── e2lsh.cpp │ ├── e2lsh.h │ ├── fastGraph.h │ ├── fastL2_ip.h │ ├── main.cpp │ └── space_l2.h └── dataset ├── ANN └── LSH-G_div_result.csv └── audio.data_new /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacyhust/LSH-APG/HEAD/.gitattributes -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacyhust/LSH-APG/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacyhust/LSH-APG/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacyhust/LSH-APG/HEAD/README.md -------------------------------------------------------------------------------- /Report/LSH-APG-Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacyhust/LSH-APG/HEAD/Report/LSH-APG-Report.pdf -------------------------------------------------------------------------------- /Report/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacyhust/LSH-APG/HEAD/Report/README.md -------------------------------------------------------------------------------- /cppCode/LSH-APG/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacyhust/LSH-APG/HEAD/cppCode/LSH-APG/Makefile -------------------------------------------------------------------------------- /cppCode/LSH-APG/lgo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacyhust/LSH-APG/HEAD/cppCode/LSH-APG/lgo -------------------------------------------------------------------------------- /cppCode/LSH-APG/src/GenericTool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacyhust/LSH-APG/HEAD/cppCode/LSH-APG/src/GenericTool.cpp -------------------------------------------------------------------------------- /cppCode/LSH-APG/src/GenericTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacyhust/LSH-APG/HEAD/cppCode/LSH-APG/src/GenericTool.h -------------------------------------------------------------------------------- /cppCode/LSH-APG/src/Preprocess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacyhust/LSH-APG/HEAD/cppCode/LSH-APG/src/Preprocess.cpp -------------------------------------------------------------------------------- /cppCode/LSH-APG/src/Preprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacyhust/LSH-APG/HEAD/cppCode/LSH-APG/src/Preprocess.h -------------------------------------------------------------------------------- /cppCode/LSH-APG/src/Query.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacyhust/LSH-APG/HEAD/cppCode/LSH-APG/src/Query.cpp -------------------------------------------------------------------------------- /cppCode/LSH-APG/src/Query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacyhust/LSH-APG/HEAD/cppCode/LSH-APG/src/Query.h -------------------------------------------------------------------------------- /cppCode/LSH-APG/src/alg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacyhust/LSH-APG/HEAD/cppCode/LSH-APG/src/alg.h -------------------------------------------------------------------------------- /cppCode/LSH-APG/src/basis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacyhust/LSH-APG/HEAD/cppCode/LSH-APG/src/basis.cpp -------------------------------------------------------------------------------- /cppCode/LSH-APG/src/basis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacyhust/LSH-APG/HEAD/cppCode/LSH-APG/src/basis.h -------------------------------------------------------------------------------- /cppCode/LSH-APG/src/def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacyhust/LSH-APG/HEAD/cppCode/LSH-APG/src/def.h -------------------------------------------------------------------------------- /cppCode/LSH-APG/src/distances_simd_avx512.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacyhust/LSH-APG/HEAD/cppCode/LSH-APG/src/distances_simd_avx512.cpp -------------------------------------------------------------------------------- /cppCode/LSH-APG/src/distances_simd_avx512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacyhust/LSH-APG/HEAD/cppCode/LSH-APG/src/distances_simd_avx512.h -------------------------------------------------------------------------------- /cppCode/LSH-APG/src/divGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacyhust/LSH-APG/HEAD/cppCode/LSH-APG/src/divGraph.h -------------------------------------------------------------------------------- /cppCode/LSH-APG/src/e2lsh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacyhust/LSH-APG/HEAD/cppCode/LSH-APG/src/e2lsh.cpp -------------------------------------------------------------------------------- /cppCode/LSH-APG/src/e2lsh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacyhust/LSH-APG/HEAD/cppCode/LSH-APG/src/e2lsh.h -------------------------------------------------------------------------------- /cppCode/LSH-APG/src/fastGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacyhust/LSH-APG/HEAD/cppCode/LSH-APG/src/fastGraph.h -------------------------------------------------------------------------------- /cppCode/LSH-APG/src/fastL2_ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacyhust/LSH-APG/HEAD/cppCode/LSH-APG/src/fastL2_ip.h -------------------------------------------------------------------------------- /cppCode/LSH-APG/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacyhust/LSH-APG/HEAD/cppCode/LSH-APG/src/main.cpp -------------------------------------------------------------------------------- /cppCode/LSH-APG/src/space_l2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacyhust/LSH-APG/HEAD/cppCode/LSH-APG/src/space_l2.h -------------------------------------------------------------------------------- /dataset/ANN/LSH-G_div_result.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacyhust/LSH-APG/HEAD/dataset/ANN/LSH-G_div_result.csv -------------------------------------------------------------------------------- /dataset/audio.data_new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacyhust/LSH-APG/HEAD/dataset/audio.data_new --------------------------------------------------------------------------------