Metadata-Version: 2.1
Name: icf-recommender
Version: 0.0.1
Summary: Recommendation Algorithm: Item Collaborative Filtering
Home-page: https://github.com/oni-on/item-collaborative-filtering
Author: Oni On
Author-email: oni.on.qepa@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
Classifier: Operating System :: OS Independent
Requires-Python: >=3
Description-Content-Type: text/markdown
Requires-Dist: numpy (==1.15.4)
Requires-Dist: pandas (==0.23.4)

# item-item-collaborative-filtering
Implementation of Amazon's [Item-Item Collaborative Filtering](https://www.computer.org/csdl/mags/ic/2017/03/mic2017030012.pdf)

## Requirements
* Python 3.6+
* Virtualenv
* Pip3

## Setup
Create the environment and install the packages listed in `requirements.txt`
with the following command:

```commandline
make requirements
```

## Testing
Run unit tests with the following command:

```commandline
make test
```


