Can any one give a particular git repository for text similarity checking code using python. Or Can help in making the program of text similarity checking using python.
            Asked
            
        
        
            Active
            
        
            Viewed 458 times
        
    1 Answers
0
            
            
        You can use the Levenshtein Distance to calculate the similarity of 2 words.
FuzzyWuzzyis a good library that makes use of this algorithm.
Example:
from fuzzywuzzy import fuzz
from fuzzywuzzy import process
fuzz.ratio("Catherine M Gitau", "Catherine Gitau")
Result:
#91
So between those two strings there is a 91% similarity.
You can read more about this topic here:
        Lukas Scholz
        
- 622
 - 5
 - 11