Mingli Yuan

Results 33 comments of Mingli Yuan

Hi, @bwlim , We think two aspects need to be considered on this issue, one is performance, the other is API design. When instant query is needed, the input of...

yes, @bwlim , R-tree is one possible way to speed up simbase, but also introduce much complexity of the code. We should balance gain and loss. For our own use...

Sorry for closing it, I think we need more time to discuss this issue.

我们是用网上广泛流传的人民日报那个语料做的测试。你有更多测试语料吗?

是的,我们没有做那么细致。如果你能帮我们做一下,那么非常欢迎! 我可以提供给你语料。

Sorry for the late reply. If my understanding is not wrong, you want to get n top similar vectors inside the same Vector Set. So just follow below steps: 1....

The pipe mode of redis protocol is not implemented. So I think below command will work. ```bash redis-cli vadd vector 1 8.748467856397232E-4 0.008283308086295923 0.014330921694636345 0.02630641683936119 ... redis-cli vadd vector 2...

Or you can use python etc ```python import redis dest = redis.Redis(host='localhost', port=7654) with open('csvdatafile.txt') as data: for idx, line in enumerate(data): line = line[:-1] components = line.split(',') dest.execute_command('vadd', 'vector',...

Could you paste the error in log file, it is at log directory

Thanks for your interesting of our project. It is possible to support euclidean distance. Please take a look of the "score" package: - https://github.com/guokr/simbase/blob/master/src/main/java/com/guokr/simbase/score/ There are two suite of APIs...