• What is the best approach?
  • What are the algorithms used? What are their strengths and weaknesses?
  • Why do current movie recommender systems fail at providing good recommendations?
link|improve this question
probably webmasters.stackexchange.com is better place for this answer – Andy T Mar 9 '11 at 23:07
Can I know why? – melhosseiny Mar 9 '11 at 23:13
"Why do most movie recommender systems suck?" doesn't sound like a programming question. maybe I'm not right about webmasters.stackexchange.com – Andy T Mar 9 '11 at 23:15
It's not an answerable question at all. Please don't dump it on another site. – Wooble Mar 9 '11 at 23:27
@Wooble Just because you don't know the answer doesn't make this question impossible to answer. If It's not suitable for Stack Overflow, I can understand that. I fail to see why though, it's an algorithmic problem afterall. – melhosseiny Mar 9 '11 at 23:36
show 2 more comments
feedback

closed as not a real question by Aliostad, Jerry Coffin, tibur, Rex Kerr, John Saunders Mar 10 '11 at 3:35

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

2 Answers

up vote 3 down vote accepted

This is a very open-ended question that involves a lot of different concepts.

As an initial discussion point, consider the k-nearest neighbor algorithm. It's widely used in problems similar to your movie picker. One big problem with this algorithm is the human input in deciding how many dimensions you use to segment your feature-space and choosing the properties of each of those dimensions so that each adds value, rather than duplicating the value of another dimension.

Directly related to the k-NN algorithm is the field of cluster analysis. When you plot data points for information that has clumps within more scattered outliers you can intuitively see that there is some nature of similarity in the clumped points. You may be able to easily group some of the scattered outliers with one or another clump, but there will be many points that lie between clumps that could fit with two or more competing clumps. The only way to remedy this dilemma is to add more dimensional parameters to your data points so that those uncommitted outliers are drawn to one clump. (Follow the link to see a nice picture of clumped data.)

This brief introduction leads to the next concept: Pattern Recognition. This subject is math-heavy and the subject of a lot of research in the fields of Theoretical Computing Science, Statistics, Artificial Intelligence, Machine Learning, and Clairvoyance. That last one is a semi-joke, but it points to the crux of your problem: How can a computer predict what you will do in the future? The short answer is that it can't. The longer answer tries to explain why your tastes and moods change in seemingly random directions at seemingly random times. A good pattern recognition system might pick 20 movies that you really enjoy and then recommend another one from the same clump that the other 20 did that you thoroughly hate. Where did the system fail? Was it in the algorithm implementation, the initial selection of parameters for the dimensions of your feature-space, or did your profile get messed up because someone else used your Netflix account to order 'Howard the Duck', 'Cruising', and 'Beaches'?

The wikipedia page for 'Pattern Recognition' lists a lot of different algorithms and methods. You can start reading there to get a better handle on individual strengths and weaknesses. You could also try asking this question in the Theoretical Computer Science stack to get the long-haired answers.

link|improve this answer
feedback

A team from BellKor won the Netflix Prize. So, arguably, this approach may be the best approach.

To give a high-level, intuitive, explanation for how these recommendation systems work, consider the following situation. I watch Star Wars twice a week. Now, if you had to recommend a movie to me that I would like, what movie would you choose? A movie with Harrison Ford? A sci-fi movie? Perhaps a movie made in the 80's?

The big idea behind recommendation systems is that the more they know what you like (i.e. what genres, actors, etc), the better recommendations they can give.

However, if your tastes contradict one another (e.g. you love Saving Private Ryan but also love movies about pacifists), it will be hard to recommend a movie to you.

In short, many recommendation algorithms need to know:

  1. What you like: this involves knowing what feature set to use in recording what movies you like. E.g. what is the genre of the film, what actors are in the film, etc.
  2. What movies are similar to what you like. This involves finding a good similarity metric based on the feature set you use in the previous step.
link|improve this answer
feedback

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