-
Steps to reproduce:
``` javascript
DELETE test_idx
# create an index
PUT test_idx
{
"settings" : {
"number_of_shards" : 3,
"number_of_replicas" : 2
}
}
# Close the index to …
-
I want to try some term_vector parameter at doc.json.
https://www.elastic.co/guide/en/elasticsearch/reference/current/term-vector.html
I changed "content" and "title" term_vector.
"propert…
-
Hi!
Concerning the [JOSS paper](https://github.com/openjournals/joss-papers/blob/joss.00505/joss.00505/10.21105.joss.00505.pdf) it seems that:
- [x] your affiliation is not complete, it would be…
-
Hi, after I switch from LSH to LSHforest. Although I set the same num_perm for them, I found the results were still quite different. For example, the top-40 I got from LSHforest is totally different f…
-
I am getting error at https://github.com/ekzhu/minhash-lsh/blob/master/lsh.go#L170 when `numHash` != 100. It's fine when `numHash = 100`.
Any idea?
-
I was trying to use lshforest to get top-k matching results for a list of floats.
```
m = [MinHash(num_perm=256) for i in range(len(features))]
forest = MinHashLSHForest(num_perm=256)
…
-
Hi everyone,
I am trying to install ES with Fess v12.1.0. I am behind a proxy and can't download from internet. When I have to install plugins for ES, like this :
/usr/share/elasticsearch/bin/e…
-
When I try to use CANU, I got the following error meassage:
```
ERROR: mhap overlapper requires java version at least 1.8.0; you have unknown (from 'java').
ERROR: 'java -showversion' reports:
…
-
In your document, there is the code like:
with lsh.insertion_session() as session:
for key, minhash in data_list:
session.insert(key, minhash)
But when I want to change my key,how to ch…
-
Hi, thanks for the amazing package!
Are there any ways to speedup the indexing for similarity search for hundreds of millions MinHashes?
I do it like that
```python
lsh = MinHashLSH(t…