RecKit

RecKit is a collection of recommender utility codes.
Feature
- 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
Installation
Installation from binary
Binary installers are available at the Python package index
pip install reckit
Build from sources
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
Usage
You can find examples in NeuRec.