Bergvca / string_grouper

Super Fast String Matching in Python
MIT License
364 stars 76 forks source link

Do the groups returned by String_Grouper follow the transitive property? #70

Closed bmanczak closed 3 years ago

bmanczak commented 3 years ago

Let's say our min_similarity is 0.8. Then if similarity(A,B) = 0.9, similarity(B,C)=0.85 and similarity(A,C)=0.7 will A,B and C all be in the same group?

Thanks!

ParticularMiner commented 3 years ago

@bmanczak

Yes. Follow this link.

bmanczak commented 3 years ago

Thanks!