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
extractOne changes result based on ordering, and my guess is this is due to Levenstein distance being equal. Maybe a new distance measure is necessary?
e.g.
process.extractOne("C++",["C#","C++","C",".NET"])
Out - ('C#', 100)
process.extractOne("C++",["C++","C#","C",".NET"])
Out - ('C++', 100)
Maybe a heuristic needs to come in for exact match?
The text was updated successfully, but these errors were encountered:
extractOne changes result based on ordering, and my guess is this is due to Levenstein distance being equal. Maybe a new distance measure is necessary?
e.g.
process.extractOne("C++",["C#","C++","C",".NET"])
Out - ('C#', 100)
process.extractOne("C++",["C++","C#","C",".NET"])
Out - ('C++', 100)
Maybe a heuristic needs to come in for exact match?
The text was updated successfully, but these errors were encountered: