Tagged Questions

5
votes
0answers
74 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
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. ...
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
2answers
829 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 ...
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 ...