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 recomment other languages.
|
I want to get a similarity percentage of two words, eg)
Don't need to be very accurate. Is there any way to do that? I am using python but feel free to recomment other languages. |
|||
|
|
Try using
You can get a rough idea of similarity by calculating the edit distance between the two strings divided by the length of the longest string. In your example the edit distance is 4, and the maximum possible edit distance is 8, so the similarity is 50%. |
||||
|
|
|
some similarity metrics from nltk library: http://www.opendocs.net/nltk/0.9.5/api/nltk.wordnet.similarity-module.html |
|||
|
|
|
You could use the python inbuilt module difflib Here's an example from that page
|
|||
|
|
|
Copying from that answer: In Python, there is difflib.
|
|||
|
|