I want to find whether two web pages are similar or not. Can someone suggest if python nltk with wordnet similarity functions helpful and how? What is the best similarity function to be used in this case?
feedback
|
|
The spotsigs paper mentioned by joyceschan addresses content duplication detection and it contains plenty of food for thought. If you are looking for a quick comparison of key terms, With
It understands plurals and it also tells you which part of speech the synonym corresponds to Synsets are stored in a tree with more specific terms at the leaves and more general ones at the root. The root terms are called hypernyms You can measure similarity by how close the terms are to the common hypernym Watch out for different parts of speech, according to the NLTK cookbook they don't have overlapping paths, so you shouldn't try to measure similarity between them. Say, you have two terms donation and gift, you can get them from
The cookbook recommends Wu-Palmer Similarity method
This approach gives you a quick way to determine if the terms used correspond to related concepts. Take a look at Natural Language Processing with Python to see what else you can do to help your analysis of text. | |||||||||
feedback
|