Collaborative filtering using SVD
DISCLAIMER: This project is a Work in Progress.
Watson is a recommender system that uses Singular Value Decomposition (SVD) to find latent features in historical datasets.
python3.6 -m venv env
source env/bin/activate
pip install -r requirements.txt
The following scripts are available:
# Generate files
python generate.py
# Train and Test
python recommend.py
Items can be ranked based on the frequency on which items are bought. An item that was bought 10 times has a 10 times higher score compared with a product that has been bought only once.
Feature scaling is applied to normalise the scores.