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?

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.