Alex Klibisz
Alex Klibisz
@dustingetz I'm going to try my best to get to it today. Still using your lib and this has been the only little issue. I just have a stack of...
@dustingetz So I was able to work around the issue that required setting the height/width via style properties. However the scrolling issue remains and is demonstrated here: https://jsfiddle.net/aklibisz/hnvfuv8a/ Try to...
The work around is good enough for now. Could you give me the gist of what is going on? Maybe I could give it a try to fix it? I...
I agree this would be nice to have for simple demos. In the meantime, there is a script here which should contain all the steps necessary to setup a multi-node...
Hi @henrywallace For all of my demo/experiments I did a random sample, somewhat biased to the first vectors. For example, for the benchmarks I have a parameter that defines the...
In general the best place to see full usage of the plugin in its current state is in the benchmarking script here: https://github.com/alexklibisz/elastik-nearest-neighbors/blob/master/elasticsearch-aknn/benchmark/aknn.py It's using Glove vectors, which are just...
Hi @henrywallace, thanks for your interest in the project. I agree this is a cool feature and have also thought about the potential integration of multiple queries. I'm not sure...
@henrywallace I'm starting to think a little bit about how to implement this part. I searched around and I don't see any way to implement a custom `bool` clause within...
@jainaayush05 I don't think the cosineDistance part will work. I'm pretty sure that the LSH hashing implementation would have to change in order for cosine distance to make sense. Do...
The implementation of lsh is different for cosine and euclidean similarity. If you are interested, this video series is a fantastic deep dive: https://youtu.be/tlGocuyQ7F0 It's certainly possible to implement but...