Tagged Questions

3
votes
3answers
131 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, …
2
votes
1answer
67 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 …
2
votes
2answers
224 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 …
1
vote
0answers
17 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 …
0
votes
0answers
14 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 …
0
votes
1answer
48 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 - …
0
votes
4answers
150 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 …