https://github.com/ocelma/python-recsys
A python library for implementing a recommender system
https://github.com/ocelma/python-recsys
Last synced: 4 months ago
JSON representation
A python library for implementing a recommender system
- Host: GitHub
- URL: https://github.com/ocelma/python-recsys
- Owner: ocelma
- Created: 2011-10-10T04:17:51.000Z (about 14 years ago)
- Default Branch: master
- Last Pushed: 2020-12-29T07:08:13.000Z (almost 5 years ago)
- Last Synced: 2024-08-08T21:19:41.373Z (over 1 year ago)
- Language: Python
- Homepage:
- Size: 139 KB
- Stars: 1,476
- Watchers: 133
- Forks: 439
- Open Issues: 9
-
Metadata Files:
- Readme: README
- Changelog: CHANGELOG
Awesome Lists containing this project
- fucking-awesome-python-cn - python-recsys
- fucking_awesome_python - python-recsys - A Python library for implementing a Recommender System. (Machine Learning)
- awesome-RecSys - python-recsys - recsys.svg?style=social) (Python Library) (5. GitHub Repositories)
- awesome-machine-master - python-recsys - A Python library for implementing a Recommender System. (Python / General-Purpose Machine Learning)
- awesome-machine-learning - python-recsys - A Python library for implementing a Recommender System. (Python / General-Purpose Machine Learning)
- awesome-machine-learning - python-recsys - A Python library for implementing a Recommender System. (Python / General-Purpose Machine Learning)
- awesome-machine-learning - python-recsys - A Python library for implementing a Recommender System. (Python / General-Purpose Machine Learning)
- fucking-awesome-machine-learning - python-recsys - A Python library for implementing a Recommender System. (Python / General-Purpose Machine Learning)
- awesome-machine-learning - python-recsys - A Python library for implementing a Recommender System. (Python / General-Purpose Machine Learning)
- awesome-machine-learning - python-recsys - A Python library for implementing a Recommender System. (Python / General-Purpose Machine Learning)
- awesome-machine-learning-cn - 官网
- awesome-python-cn - python-recsys
- awesome-machine-learning - python-recsys - A Python library for implementing a Recommender System. (Python / General-Purpose Machine Learning)
- awesome-advanced-metering-infrastructure - python-recsys - A Python library for implementing a Recommender System. (Python / General-Purpose Machine Learning)
README
=============
python-recsys
=============
A python library for implementing a recommender system.
==================
INSTALLATION NOTES
==================
1) Dependencies
python-recsys is build on top of Divisi2, with csc-pysparse (Divisi2 also requires NumPy, and uses Networkx).
python-recsys also requires SciPy.
To install the dependencies do something like this (Ubuntu):
sudo apt-get install python-scipy
sudo apt-get install python-numpy
sudo pip install csc-pysparse networkx divisi2
# If you don't have pip installed then do:
# sudo easy_install csc-pysparse
# sudo easy_install networkx
# sudo easy_install divisi2
2) Download
Download python-recsys from github: https://github.com/ocelma/python-recsys
3) Install
tar xvfz python-recsys.tar.gz
cd python-recsys
sudo python setup.py install
..and you're all set! (hopefully)