Difference between revisions of "Python-recsys"

From RecSysWiki
Jump to navigation Jump to search
m
m
Line 1: Line 1:
'''python-recsys''' is a fast recommender engine for Python.  
+
[https://github.com/ocelma/python-recsys '''python-recsys'''] is a fast recommender engine for Python.  
 
It uses Matrix Factorization to provide recommendations and similiarities among items or users.
 
It uses Matrix Factorization to provide recommendations and similiarities among items or users.
 
The library is built on top of divisi2, which already implements SVD-like matrix factorization using numpy.
 
The library is built on top of divisi2, which already implements SVD-like matrix factorization using numpy.

Revision as of 15:41, 19 January 2012

python-recsys is a fast recommender engine for Python. It uses Matrix Factorization to provide recommendations and similiarities among items or users. The library is built on top of divisi2, which already implements SVD-like matrix factorization using numpy.

Quick Start

See some examples to see how simple is to build a recommender system in Python!

Documentation

External links