Created
October 8, 2016 18:43
-
-
Save hvtuananh/1fe250e7d2822ab039bb8e8d63bcfcfc to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import re | |
from difflib import SequenceMatcher | |
pattern=re.compile("[^\w']") | |
def gen_signature(string): | |
string = string.lower() | |
string = pattern.sub(' ', string) | |
data = filter(None, string.split(' ')) | |
return ''.join([x for x in data if len(x) > 1]) | |
class Entity(): | |
def __init__(self, name=None, addr=None, phone=None): | |
self.name = name | |
self.addr = addr | |
self.phone = phone | |
def similarity(self, other): | |
score = 1.0 | |
if self.name and other.name: | |
score *= SequenceMatcher(None, gen_signature(self.name), gen_signature(other.name)).ratio() | |
if self.addr and other.addr: | |
score *= SequenceMatcher(None, gen_signature(self.addr), gen_signature(other.addr)).ratio() | |
if self.phone and other.phone: | |
score *= SequenceMatcher(None, gen_signature(self.phone), gen_signature(other.phone)).ratio() | |
return score | |
if __name__ == "__main__": | |
e1 = Entity("Flynn's Tire & Auto Service", "718A Hope Hollow Rd\nCarnegie, PA 15106", "123-456-7890") | |
e2 = Entity("Flynn's Tire Auto Service", "718A Hope Hollow Rd\nCarnegie, PA 15106", "1234567890") | |
print e1.similarity(e2) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment