Tagged Questions

8
votes
4answers
716 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, ...
7
votes
0answers
90 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 ...
3
votes
4answers
840 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 ...
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
832 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 ...
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
2answers
311 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 ...
0
votes
1answer
208 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 ...