6 Comments
Sep 14Liked by Avi Chawla

When I encountered fuzzy de-duplication in the past, it was usually sufficient to normalize the data. For phone numbers, you can remove all non-digit characters, and you can normalize addresses using a service like Smarty. Then do exact comparison. However, normalization might not be good enough for all types of data.

Expand full comment

The method you provided is far from perfect. There are significantly better methods available for checking fuzzy matching with a specified number of errors. You can search for NMSLIB. We have developed our own method that surpasses NMSLIB, providing faster results and matching more strings. - Panna Lal Patodia, CEO, Patodia Infotech Private Limited

Expand full comment

After bringing down to buckets, is there apossibility to convert them to embedding weights and apply nearest neighbour? If it's too near can we mark as same? Please share your thoughts

Expand full comment