I have a database of which products every user has viewed and I want to recommend a product based on what similar users have viewed. Is there a Python library that can achieve this? I don't need Netflix quality results, just products that are more likely than not of interest. Any ideas?
|
feedback
|
|
You can check out pysuggest. From the site:
| |||
|
feedback
|
|
k-Nearest Neighbor is often the algorithmic backbone for recommendation systems. In NumPy/SciPy you have several choices. One is the ANN ('approximate nearest neighbors') library in 'SciKits', a SciPy add-on, which you can download here. In addition, the SciPy Spatial module (scipy.spatial) is a good choice. I used this for several projects and i can recommend it. What i liked particularly: (i) the built-in kd-tree class (kd-tree rather than standard numpy array is used by this module to store the data, which along w/ Voronoi tesselation, is the most common specialized data structure to store very large data sets for kNN); (ii) it's very fast; (iii) the documentation is pretty good (what you might not find, you should be able to find in the source); and (iv) it has several built-in methods for distance computation (aside from Euclidean). | |||
|
feedback
|
|
Here's another python library to implement a recommender system: https://github.com/ocelma/python-recsys It's very simple to use it! See some examples here: http://ocelma.net/software/python-recsys/build/html/quickstart.html | |||
|
feedback
|