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
See rapidfuzz/RapidFuzz#13 for generous details from another fuzzywuzzy compatible project author.
Essentially, partial_ratio attempts to align strings optimally, then take the ratio of the aligned string subsets. The method of alignment used in fuzzywuzzy is.. pretty bad, actually.
Implement Smith-Waterman for sequence alignment to power partial_ratio. Legacy partial_ratio behaviour will be relegated to a compatibility function (which, if there are more, might be put into a compatibility module).
The text was updated successfully, but these errors were encountered:
See rapidfuzz/RapidFuzz#13 for generous details from another fuzzywuzzy compatible project author.
Essentially,
partial_ratio
attempts to align strings optimally, then take the ratio of the aligned string subsets. The method of alignment used in fuzzywuzzy is.. pretty bad, actually.Implement Smith-Waterman for sequence alignment to power
partial_ratio
. Legacypartial_ratio
behaviour will be relegated to a compatibility function (which, if there are more, might be put into a compatibility module).The text was updated successfully, but these errors were encountered: