Tagged Questions
For questions related to collaborative filtering and recommendation systems.
19
votes
8answers
3k views
What is algorithm behind the recommendation sites like last.fm, grooveshark, pandora?
I am thinking of starting a project which is based on recommandation system. I need to improve myself at this area which looks like a hot topic on the web side. Also wondering what is the algorithm ...
8
votes
4answers
712 views
Building a Collaborative filtering / Recommendation System
I'm in the process of designing a website that is built around the concept of recommending various items to users based on their tastes. (i.e. items they've rated, items added to their favorites list, ...
8
votes
2answers
1k views
Open Source collaborative filtering frameworks
I was wondering if there exists any open source frameworks that will help me include the following type of functionality to my website:
1) If I am viewing a particular product, I would like to see ...
6
votes
1answer
107 views
Distribution among users for collaborative voting algorithm
Users of my application (it's a game actually) answer questions to get points. Questions are supplied by other users. Due to volume, I cannot check everything myself, so I decided to crowd-source the ...
5
votes
0answers
70 views
A good collaborative filtering/matching/recommendation library for Python/Django?
I'm looking for a library I can use to match my users to other Django models based on answers to questions-- also my own django model.
So I'd like something customizable, with good ...
4
votes
3answers
59 views
Concerning a recommendation engine
What's a fast "if user A and user B like product C, they might be interested to follow each other" algorithm. I don't think that calculating their similarity at runtime is smart enough, because it ...
4
votes
3answers
711 views
collaborative filtering in rails
I'm looking for a solution for collaborative filtering in rails or even possible examples. So far I have only found acts_as_recommendable which looks useful but I noticed it hasn't had any updates in ...
4
votes
2answers
263 views
Collaborative Filtering: Ways to determine implicit scores for products for each user?
Having implemented an algorithm to recommend products with some success, I'm now looking at ways to calculate the initial input data for this algorithm.
My objective is to calculate a score for each ...
3
votes
1answer
156 views
How stumbleupon does recommendation for its users?
I would like to know how stumbleupon recommends articles for its users?. Is it using a neural network or some sort of machine-learning algorithms or is it actually recommending articles based on what ...
3
votes
4answers
586 views
SQL to calculate the Tanimoto Coefficient of several vectors
I think it's easier to explain my problem with an example.
I have one table with ingredients for recipes and I have implemented a function to calculate the Tanimoto coefficient between ingredients. ...
3
votes
4answers
838 views
Collaborative Filtering Program: What to do for a Pearson Score When There Isn't Enough Data
I'm building a recommendation engine using collaborative filtering. For similarity scores, I use a Pearson correlation. This is great most of the time, but sometimes I have users that only share a 1 ...
3
votes
4answers
726 views
Best similarity metric for collaborative filtering?
I'm trying to decide on the best similarity metric for a product recommendation system using item-based collaborative filtering. This is a shopping basket scenario where ratings are binary valued - ...
2
votes
3answers
89 views
Recommendation algorithm (and implementation) for finding similar items and users
I have a database of about 700k users along with items they have watched/listened to/read/bought/etc.
I would like to build a recommendation engine that recommends new items based on what users with ...
2
votes
1answer
646 views
Recommender system: simple user-based collaborative filtering to evaluate with precision and recall
I'm looking for a very simple implementation in Java of a user-based collaborative filtering. I would like to evaluate the precision and recall of this CF with the movielens dataset. I've seen that ...
2
votes
2answers
642 views
Basic Pseudocode for using SVD with Movielens/Netflix type data set
I'm struggling to figure out how exactly to begin using SVD with a MovieLens/Netflix type data set for rating predictions. I'd very much appreciate any simple samples in python/java, or basic ...
2
votes
4answers
449 views
Recommendation System for a book store application
Hey I'm trying to learn some of the recommendation algorithms that's being used in websites like Amazon.com. So I have this simple java (spring hibernate postgres) book store application where in Book ...
2
votes
7answers
425 views
Approaches for Content-based Item Recommendations
I'm currently developing an application where I want to group similar items. Items (like videos) can be created by users and also their attributes can be altered or extended later (like new tags). ...
2
votes
2answers
81 views
What are some ways for a reccomendation engine to deal with one time, novel and potentially important content?
Say you built a recommendation engine that would recommend you live TV shows for you to watch. For regular shows, you could do a pretty good job using collaborative filtering and the like. But say it ...
2
votes
1answer
90 views
How to prune data set by frequency to conform to paper's description
The MovieLens data set provides a table with columns:
userid | movieid | tag | timestamp
I have trouble reproducing the way they pruned the MovieLens data set used in:
Tag Informed Collaborative ...
2
votes
1answer
606 views
Converting python collaborative filtering code to use Map Reduce
Using Python, I'm computing cosine similarity across items.
given event data that represents a purchase (user,item), I have a list of all items 'bought' by my users.
Given this input data
...
2
votes
1answer
378 views
Collaborative filtering in MySQL?
I'm trying to develop a site that recommends items(fx. books) to users based on their preferences. So far, I've read O'Reilly's "Collective Intelligence" and numerous other online articles. They all, ...
2
votes
2answers
828 views
Collaborative Filtering: Non-Personalized item-to-item similarity
I'm trying to compute item-to-item similarity along the lines of Amazon's "Customers who viewed/purchased X have also viewed/purchased Y and Z". All of the examples and references I've seen are for ...
2
votes
3answers
279 views
is KNN valuable if most ratings are a 5 / passive filtering recommendations
I've been looking at building a 'people who like x, also like y' type recommendation system, and was looking at using Vogoo, but after looking through their code it seems there is a lot of nearest ...
1
vote
1answer
15 views
Binary values in Collaborative Filtering
Can the values in User-Item matrix be binary values like 0 and 1 which indicate “didn’t buy”-vs-“bought”?
And if apply latent factor model on the matrix, can the predicted value (for example 0.8) ...
1
vote
1answer
29 views
Integrating content information with factorization-based collaborative filtering
I'm reading some papers in CF and noticed that most state-of-the-art methods are based on different factorization methods on the rating matrix only. I'd like to know if there are some representative ...
1
vote
1answer
98 views
mahout collaborative-filtering input binary dataset
i am new to mahout.
I have already used mahout's item based algorithm with a loglikelihood similarity measure. I read in past threads that it is better to use loglikelihood similarity when the ...
1
vote
3answers
147 views
How to check my item based collaborative filtering algo is correct?
I have just created an algorithm for item based collaborative filtering, that can take an array of data in the form [username]=>[item]=>[rating] and recommend other items based on the current ...
1
vote
1answer
66 views
What are the most efficient algorithms to recommend items to groups of users?
Using collaborative filtering usually applies to giving ratings to an individual user, but how would these algorithms change when needing to recommend an item(s) to multiple people (for example: ...
1
vote
1answer
59 views
A personalized email algorithm
I've been delving into a lot of recommendation algorithms lately (collaborative filtering mostly) and I've found quite a lot of answers on recommending an item based on either a specific user or item ...
1
vote
1answer
172 views
Where do I check the results of Mahout's jester example?
After I run: mahout org.apache.mahout.cf.taste.example.jester.JesterRecommenderEvaluatorRunner
mahout org.apache.mahout.cf.taste.example.jester.JesterRecommenderEvaluatorRunner
Running on hadoop, ...
1
vote
2answers
306 views
Slope One implementations offers poor recommendations
I'm attempting to implement a Slope One algorithm via PHP for user-based item recommendation. To do this, I'm using the OpenSlopeOne library. The problem I'm having is that the recommendations ...
1
vote
1answer
213 views
recommendation system data collection methodology
i am building a recommendation system in my application and i am probably going to use apache mahout, i ve to collect a big dataset, it ll be collected over a period of time...so which one is least ...
1
vote
1answer
176 views
What is the difference between Collaborative Filtering and Collaborative Quality Filtering?
I am currently looking into Collaborative Quality Filtering and was just wondering, What is the difference between Collaborative Filtering and Collaborative Quality Filtering? It seems to me that they ...
0
votes
1answer
48 views
Howto Create Recommendations with a Incremental SVD Recommender System
I am testing a recommendation system that is built according to Simon Funk's algorithm.
(written by Timely Dev. http://www.timelydevelopment.com/demos/NetflixPrize.aspx)
The problem is, all ...
0
votes
1answer
64 views
Mahout servlets per data model
I am implementing the Mahout user-based recommendation engine where the recommendations will be server via RecommenderServlet running in Tomcast. So far looks like a basic setup, but it has some extra ...
0
votes
1answer
169 views
Similarity function for Mahout boolean user-based recommender
I am using Mahout to build a user-based recommendation system which operates with boolean data.
I use GenericBooleanPrefUserBasedRecommender, NearestNUserNeighborhood and now trying to decide about ...
0
votes
1answer
24 views
What is collaborative Intelligent filtering?
i looked it up in the internet (ofcourse), and found nothing like it exactly, what I saw was intelligent collaborative filtering and simply collaborative filtering.
0
votes
0answers
37 views
How to analyse optimal weights for gathered information in recommendation systems [closed]
I want to write a master thesis about recommendation systems on e-commerce sites and there are several questions.
In my first brainstorming I listed some factors that (I think) provide information ...
0
votes
1answer
174 views
Mahout Log Likelihood similarity metric behaviour
The problem I'm trying to solve is finding the right similarity metric, rescorer heuristic and filtration level for my data. (I'm using 'filtration level' to mean the amount of ratings that a user or ...
0
votes
1answer
124 views
most effective distance function for collaborative filtering in weka Java API
so I'm building this collaborative filtering system using Weka's machine learning library JAVA API...
I basically use the StringToWordVector filter to convert string objects into their word occurence ...
0
votes
1answer
205 views
collaborative filtering library in C++
does any of you know any good specific library that contains implementations of common algorithms specifically geared towards collaborative filtering/recommendation system that is written in C++
so ...
0
votes
1answer
126 views
Pearson Correlation problem
I'm not sure which figures to use below in a problem Im trying to solve that involves using the Pearson Correlation formula.
A B C D E F
Bob 4 5 4 2
Fra 2 2 2 3 2
Lee 2 4 3 ...
0
votes
1answer
70 views
what does it mean by “f: U x I -> S”
what does it mean by "f: U x I -> S"? My material says this function predicts rating of a user u for a new item i. But what is "x" there? Anyone please explain the symbols for me..
The material I ...
0
votes
0answers
112 views
Finding similarities between Items
I am trying to implement one of collaborative Filtering algorithm,Cosine Algorithm. So far the examples I have seen they have used 5 star or 10 star rating system but I am more interested to implement ...
0
votes
1answer
50 views
Can SlopeOne Algo be used for this problem?
I need to implement collaborative filtering techniques to gives users similar functionality which Amazon gives when you an individual item that is,"People who visited this also visited these". I have ...
0
votes
2answers
103 views
How to optimize an database suggestion engine
I`m making an online engine for item-to-item recommending movies. I have made some researches and I think that the best way to implement that is using pearson correlation and make a table with item1, ...
0
votes
4answers
231 views
Capturing Implicit Signals of Interest in Django
To set the background: I'm interested in:
Capturing implicit signals of interest in books as users browse around a site. The site is written in django (python) using mysql, memcached, ngnix, and ...
-1
votes
1answer
59 views
collaborative filtering approach for tips/recommendations related to registered courses
I am looking at a specific problem where I need to build a recommender.
The generalized problem is as follows,
Each user has registered for (say) x courses (c1, c2, c3, .. cx)
Depending on each ...