nmslib
nmslib copied to clipboard
Non-Metric Space Library (NMSLIB): An efficient similarity search library and a toolkit for evaluation of k-NN methods for generic non-metric spaces.
我使用Visual Studio 2019版编译运行,在sample_standalone_app1.vcxproj项目中报错:can not open file "NonMetricSpaceLib.lib",我并没有在项目中找到该lib文件,请问这应该怎么解决?
Related to https://github.com/nmslib/nmslib/issues/482
Hello, I am looking into improving the Jaccard similarity spaces interfacing with Python and would like to pass integers as input to be more space efficient. However, as of now,...
If I have a Numpy-array of type `uint8` and i would want to use the data with NMSLIB, I would have to call `np.unpackbits` and join the resulting 1s and...
Is there any possible to make index and data into one file, when use non optimized spaces. Because any non optimized spaces, we want to use it, must write and...
As #467 i ask about make data and index into one file. I check the code: [WriteObjectVectorBinData](https://github.com/nmslib/nmslib/blob/master/similarity_search/src/space.cc#L90), [ReadObjectVectorFromBinData](https://github.com/nmslib/nmslib/blob/master/similarity_search/src/space.cc#L62) in [space.cc](https://github.com/nmslib/nmslib/blob/master/similarity_search/src/space.cc), may be there is a way to make unoptimized index...
Hi! When I try to overcome #289 I use len(index). But if I save and then load same index, it gets len(index)==0, despite of it is actually non-empty and completely...
Can it be because the index is empty? ``` nmslib.init(method='hnsw', space='cosinesimil') index.createIndex({'post': 2}, print_progress=True) index.saveIndex(cache, True) index.loadIndex(cache, True) ``` ``` #0 0x00007fa656ffb439 in similarity::Hnsw::LoadRegularIndexBin ( this=this@entry=0x13d3cb60, input=...) at ./similarity_search/src/method/hnsw.cc:943 943...
Hi @Neoanarika ,, It would be nice to have the function to retrieve all the nodes that are part of the existing index. Was just wondering any reason we did...