Difference between revisions of "Python-recsys"
Jump to navigation
Jump to search
m |
Zeno Gantner (talk | contribs) |
||
| (3 intermediate revisions by 2 users not shown) | |||
| Line 1: | Line 1: | ||
| − | '''python-recsys''' is a fast recommender engine for Python. | + | '''python-recsys''' is a fast recommender engine for [[Python]]. |
| − | It uses | + | 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. |
== Quick Start == | == Quick Start == | ||
| Line 16: | Line 16: | ||
* https://github.com/ocelma/python-recsys official website | * https://github.com/ocelma/python-recsys official website | ||
| − | * http://csc.media.mit.edu/docs/divisi2/ | + | * http://csc.media.mit.edu/docs/divisi2/ Divisi2 Package from MIT |
| − | [[Category:Software]] | + | [[Category: Software]] |
| + | [[Category: Python]] | ||
Latest revision as of 07:24, 19 March 2013
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
- https://github.com/ocelma/python-recsys official website
- http://csc.media.mit.edu/docs/divisi2/ Divisi2 Package from MIT