recommender-pkg

A small recommender package


License
MIT
Install
pip install recommender-pkg==0.0.6

Documentation

Recommender Package

Implementations of explicit and implicit recommenders with Numpy and Keras.

$ pip install recommender-pkg

Author: Mian Uddin
Advisor: Dr. Paul Anderson
Course(s): CSC 491, CSC 492
School: Cal Poly, San Luis Obispo

Usage

import recpkg

See the documentation for more.

Build

Use the following command to build a wheel of this package.

$ python3 -m build

Test

Use the following command to run unit tests.

$ python3 -m unittest tests

Document

Use the following command to build the documentation.

$ sphinx-apidoc -f -o docs/source recommender_pkg/
$ (cd docs/ && make html)

Release

Use the following command to distribute to PyPi.

$ python3 -m twine upload dist/*