Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 935 Bytes

README.md

File metadata and controls

18 lines (13 loc) · 935 Bytes

Recommendation System in JavaScript with MovieLens Database

Build Status

A recommender system in JavaScript built with NodeJs. It uses the popular MovieLens database which includes information about movies and ratings of users. The recommender system implements the following recommendation strategies:

  • linear regression with gradient descent learning
  • content based recommendation
  • collaborative filtering (CF) recommendation
    • item based CF
    • user based CF

Installation

  • git clone git@github.com:javascript-machine-learning/movielens-recommender-system-javascript.git
  • cd movielens-recommender-system-javascript
  • npm install
  • npm start