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
{{ message }}
This repository has been archived by the owner on Aug 26, 2024. It is now read-only.
but for token_sort_ratio/token_set_ratio is case insensitive
would be better to make them consistent?
>>> fuzz.ratio("this is a test", "this is a test!")
97
>>> fuzz.ratio("this is a test", "this is a TEST!")
69
>>> fuzz.partial_ratio("this is a test", "this is a test!")
100
>>> fuzz.partial_ratio("this is a test", "this is a TEST!")
71
>>> fuzz.token_sort_ratio("fuzzy wuzzy was a bear", "wuzzy fuzzy was a bear")
100
>>> fuzz.token_sort_ratio("fuzzy wuzzy was a bear", "wuzzy fuzzy was a BEAR")
100
>>> fuzz.token_set_ratio("fuzzy was a bear", "fuzzy fuzzy was a bear")
100
>>> fuzz.token_set_ratio("fuzzy was a bear", "fuzzy fuzzy was a BEAR")
100
The text was updated successfully, but these errors were encountered:
Probably yes, but would have to be a minor release. Can you submit a pull request with this change, making it always case sensitive? I can review/merge/release it for you :)
would be better to make them consistent?
The text was updated successfully, but these errors were encountered: