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
Would it be possible to improve the fuzzy search algorithm so it can handle simple typos? Here is an example:
If you have perfect spelling as above you get a good match (69%) and the highlight captures the entire phrase. However, if you transpose the last two letters of the search string, the score drops to 25% and ranks below a result that has shorter matches. Also, the highlight is no longer showing as much as it could. The search string has swapped the last two letters, but the highlight has now dropped the last 10 letters. I was expecting the highlight to at least contain "turn any list into an animat" since this is an exact match. I could understand if the word "animated" gets dropped from the highlight, but why is the prior word "an" being dropped as well?
Here is a more extreme example, the "x" at the end of the search string is causing the entire result to be omitted, even though the first 5 words of the search appear perfectly in the result. The misspelled word in the search poisons the entire query.
The text was updated successfully, but these errors were encountered:
Would it be possible to improve the fuzzy search algorithm so it can handle simple typos?
no.
early versions used to handle a single transpose like in your 2nd example and return a normal score of 69%, but this caused more problems than it solved. lots of issues asking why things were a match and it was because of this.
i can't think of a simple/fast way to deal with typos that doesn't cause other issues.
if you care about typos you should use a different search library like fuse.js, which often returns nonsense results, probably a direct consequence of supporting typos
Would it be possible to improve the fuzzy search algorithm so it can handle simple typos? Here is an example:
If you have perfect spelling as above you get a good match (69%) and the highlight captures the entire phrase. However, if you transpose the last two letters of the search string, the score drops to 25% and ranks below a result that has shorter matches. Also, the highlight is no longer showing as much as it could. The search string has swapped the last two letters, but the highlight has now dropped the last 10 letters. I was expecting the highlight to at least contain "turn any list into an animat" since this is an exact match. I could understand if the word "animated" gets dropped from the highlight, but why is the prior word "an" being dropped as well?
Here is a more extreme example, the "x" at the end of the search string is causing the entire result to be omitted, even though the first 5 words of the search appear perfectly in the result. The misspelled word in the search poisons the entire query.
The text was updated successfully, but these errors were encountered: