You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, could you please add score_cutoff feature to DamerauLevenshtein and Levenshtein functions?
It would make function complete faster in case we need only word pairs having distance less or equal to score_cutoff.
score_cutoff (int, optional) – Maximum distance between s1 and s2, that is considered as a result. If the distance is bigger than score_cutoff, score_cutoff + 1 is returned instead. Default is None, which deactivates this behaviour.
Hi, could you please add score_cutoff feature to DamerauLevenshtein and Levenshtein functions?
It would make function complete faster in case we need only word pairs having distance less or equal to score_cutoff.
score_cutoff (int, optional) – Maximum distance between s1 and s2, that is considered as a result. If the distance is bigger than score_cutoff, score_cutoff + 1 is returned instead. Default is None, which deactivates this behaviour.
See for reference: https://maxbachmann.github.io/RapidFuzz/Usage/distance/DamerauLevenshtein.html
The text was updated successfully, but these errors were encountered: