score_cutoff not working in extract #161
|
Hi, i am passing 100k elements to extract() but i am only getting 5 back. my score_cutoff is 0-10 and i have no limit set. |
Answered by
maxbachmann
May 9, 2021
Replies: 2 comments
|
Okay, that's interesting. If i set a limit it returns more values, if not, then i get only 5. I'll try to invalidate my IDE cache tomorrow. I am currently running a heavy task since 2 days and i can't restart the IDE. |
0 replies
|
Limit defaults to 5. You can return all elements by using |
0 replies
Answer selected by
maxbachmann
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Limit defaults to 5. You can return all elements by using
limit=None. This default is selected to keep a similar behavior to FuzzyWuzzy. You can find the full documentation ofprocess.extracthere: https://maxbachmann.github.io/RapidFuzz/process.html#extract.