RecKit is a collection of recommender utility codes.
- Parse arguments from command line and ini-style files
- Diverse data preprocessing
- Fast negative sampling
- Fast model evaluating
- Convenient records logging
- Flexible batch data iterator
Binary installers are available at the Python package index
# PyPI
pip install reckit
To install reckit from source you need Cython:
pip install cython
In the reckit directory, execute:
python setup.py bdist_wheel
Then, you can find a *.whl
file in ./dist/
, and install it:
pip install ./dist/*.whl
You can find examples in NeuRec.