How does Google News and Techmeme cluster news items that are similar? Are there any well know algorithm that is used to achieve this?

Appreciate your help.

Thanks in advance.

link|improve this question
feedback

2 Answers

up vote 6 down vote accepted

One fairly common way to cluster text based on content is to use Principle Component Analysis on the word vectors (a vector of n dimensions where each possible word represents one dimension and the magnitude in each direction, for each vector, is the number occurrences of the word in that particular article), followed by just a simple clustering such as K-Means.

link|improve this answer
3  
Thanks Andy. Appreciate your help. While researching this topic from your answer I found some useful links. I am posting it here as comment so that anyone interested in this topic can have a starting point. Hierarchical agglomerative clustering nlp.stanford.edu/IR-book/html/htmledition/… A Tutorial on Clustering Algorithms home.dei.polimi.it/matteucc/Clustering/tutorial_html/… Introduction to Information Retrieval nlp.stanford.edu/IR-book/html/htmledition/irbook.html – niraj Apr 29 '09 at 15:24
feedback

The algorithmic basis is agglomerative clustering or something similar. But there are a number of heuristics on top of that. For example, the vector space is surely comprised of words and phrases (word n-grams). Limiting the search in a strict time period is also very important. And identifying names, and weighing more the title and the paragraph headings are also key parts.

On a tangentially related note. If you are interested in finding near-duplicate articles then there are a number of easier to implement approaches, such as the one described here

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.