A Node.js module to implement a recommender engine with popular machine-learning algorithms.
- Inspired by the Programming Collective Intelligence book.
- Getting similiarity with Euclidean distance and Pearson score.
- User and Item by Collarborative Filters.
Via npm:
$ npm install recommend
As a submodule of your project (you will also need to install)
$ git submodule add http://github.com/xissy/node-recommend.git recommend
$ git submodule update --init
var recommed = require('recommend');
0.0.3:
- Some getting similarity and collarborative filter functions.
- Implement functions in the Programming Collective Intelligence book.
- Implement algorithms in Apache Mahout open-source project.