The algorithm used to generate recommendations in Google News?

Posted by Siddhant on Stack Overflow See other posts from Stack Overflow or by Siddhant
Published on 2010-04-27T09:06:55Z Indexed on 2010/04/27 9:13 UTC
Read the original article Hit count: 322

Hi everyone.

I'm study recommendation engines, and I went through the paper that defines how Google News generates recommendations to users for news items which might be of their interest, based on collaborative filtering.

One interesting technique that they mention is Minhashing. I went through what it does, but I'm pretty sure that what I have is a fuzzy idea and there is a strong chance that I'm wrong. The following is what I could make out of it :-

  1. Collect a set of all news items.
  2. Define a hash function for a user. This hash function returns the index of the first item from the news items which this user viewed, in the list of all news items.
  3. Collect, say "n" number of such values, and represent a user with this list of values.
  4. Based on the similarity count between these lists, we can calculate the similarity between users as the number of common items. This reduces the number of comparisons a lot.
  5. Based on these similarity measures, group users into different clusters.

This is just what I think it might be. In Step 2, instead of defining a constant hash function, it might be possible that we vary the hash function in a way that it returns the index of a different element. So one hash function could return the index of the first element from the user's list, another hash function could return the index of the second element from the user's list, and so on. So the nature of the hash function satisfying the minwise independent permutations condition, this does sound like a possible approach.

Could anyone please confirm if what I think is correct? Or the minhashing portion of Google News Recommendations, functions in some other way? I'm new to internal implementations of recommendations. Any help is appreciated a lot.

Thanks!

© Stack Overflow or respective owner

Related posts about algorithm

Related posts about recommendation