What are the ways to use machine learning in a movie recommender system?
-
I am new to recommendation systems and have to implement a Movie recommender system. I have previously worked with Classifiers (Naive Bayes, SVM etc.) and understand how I can use Machine learning although I am not able to understand that how would i use Machine learning in a recommender system. I find all the processing happening real time. I am planning to use a hybrid of Collaborative and Content based filtering but can't relate it to Machine learning.
-
Answer:
While you can frame a recommender as a classifier problem -- by building a classifier for each movie or perhaps group of movies -- it is not usually feasible or effective to apply these techniques. Naive Bayes / SVM / random forests etc. don't come into play. You can make recommendations offline or online. It's not necessarily true that you do it all online, though you can try. There is usually some "model building phase" like in any learning algorithm. For collaborative filtering it may be precomputing similarities or clustering, projecting into lower dimensional space, making a latent factor model. CF relies on interactions between users and items rather than the properties of users and items. You can either choose to view these quite separately, build separate models that make separate predictions, and then combine them in an ensemble. Or, sometimes I've seen the user/item attributes used to define a similarity metric and then apply those in a neighborhood-based algorithm that is itself built on the interaction data. That's a way to combine both. I suppose you could even do the reverse! Or you can try to mash them together. For example you could imagine that "user is female" is like "user interacts strongly with an item called 'female'" and then treat attributes like other user-item interactions in a general model. It is crude but actually works well.
Sean Owen at Quora Visit the source
Other answers
There are several aspects of Recommender Systems beyond collaborative filtering. Let's start with latent models. They are based on Latent Semantic Indexing ideas and became popular after the Netflix prize. Today most recommender systems use some form of latent modeling using SVD++ or NMF alike algorithms. The paper "Factorization meets the neighborhood" is your starting point. Then let's say you are able to predict a rating for any pair of user/movie in your system. You are still far from having a good recommender system. You need a way to rank those movies to know which ones to recommend. This is a case of "learning to rank" where you can use an ordinal SVM and other methods. You also have the diversity problem. You can't recommend the user movies that are very similar of in the same genre. You need an algorithm to pick recommendations covering your genres/topics spectrum. This is a case of the set-cover problem. Consider also serendipity, you don't want to recommend the user movies he could have discovered himself. In other words recommending Titanic has a low value to the user while recommending a strange Japanese movie from the 90's could be golden if the user indeed like it. This is the key to a succesful recommender system because you have that "long tail" of unknown movies and those are the ones most users don't know and some of them would probably like some of those movies but they are undiscovered. That's the key word for a RS: "discovery". And you need to factor the social aspects, do you compute user-user similarities based on ML algorithms? Do you mine for communities in your social graph? Do you rank users according to "trust" to weight their recommendations? You have a lot of information you can use to improve your recommendations. In all these problems you have the option to use ML algorithms to help you solve them. TL;DR: Recommender systems are a lot more complex than just estimating ratings for items. That's only the tip of the Iceberg!
Luis Argerich
Related Q & A:
- What are some ways I can make a little money?Best solution by Yahoo! Answers
- What is a good way to promote a movie?Best solution by Yahoo! Answers
- What online site can I use to search for a job?Best solution by Yahoo! Answers
- What are easy ways of writing a good essay?Best solution by Quora
- What are some ways be become a swiss resident?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.