I want to know what can be used to determine the relevance of a page for a theme like games, movies, etc.
There is some research in this area or is only count the how much times some relevant words appears?
|
I want to know what can be used to determine the relevance of a page for a theme like games, movies, etc. There is some research in this area or is only count the how much times some relevant words appears?
| ||||
|
feedback
|
|
The common choice is supervised document classification on bag of words (or bag of n-grams) features, preferably with tf-idf weighting. Popular algorithms include Naive Bayes and (linear) SVMs. For this approach, you'll need labeled training data, i.e. documents annotated with relevant themes. See, e.g., Introduction to Information Retrieval, chapters 13-15. | |||
|
feedback
|