Open SeanPedersen opened 3 weeks ago
I noticed a strange behavior: when I switch the process.extract(query, limit=k) from k=10 to k=1000 I get different top k results (better for higher k).
process.extract(query, limit=k)
k=10
k=1000
Expected behavior: the top 10 matches should be the same for limit=10 and limit=1000.
Eeery.. Can you give me a minimal reproducible example of this so I can investigate?
I noticed a strange behavior: when I switch the
process.extract(query, limit=k)
fromk=10
tok=1000
I get different top k results (better for higher k).Expected behavior: the top 10 matches should be the same for limit=10 and limit=1000.