Tagged Questions
4
votes
6answers
608 views
strategies for finding duplicate mailing addresses
I'm trying to come up with a method of finding duplicate addresses, based on a similarity score. Consider these duplicate addresses:
addr_1 = '# 3 FAIRMONT LINK SOUTH'
addr_2 = '3 FAIRMONT LINK S'
...
3
votes
5answers
226 views
Figure out if a business name is very similar to another one - Python
I'm working with a large database of businesses.
I'd like to be able to compare two business names for similarity to see if they possibly might be duplicates.
Below is a list of business names that ...
2
votes
1answer
70 views
Python digest/hash for string similarity
I'm looking for an algorithm which can generate a short (fx 16 chars (not important) hashcode/digest from a longer string.
The main requirement is that strings which is almost identical should result ...
0
votes
4answers
355 views
python search technology: word similarity
I want to get a similarity percentage of two words, eg)
abcd versus zzabcdzz == 50% similarity
Don't need to be very accurate. Is there any way to do that? I am using python but feel free to ...