Git Product home page Git Product logo

movie-recommender's Introduction

Movie Recommender

A Spring Boot web app that generates movie recommendations from a user's submitted ratings running a user-based collaborative filtering recommendation engine.

To see the app in action, go to https://movie-recommender-demo.herokuapp.com/

Dataset

Original and processed movieLens dataset, as well as processing steps can be found at another repository 27M-movieLens-dataset-processing. Main processings are:

  • Scrap poster urls from IMDB
  • Normalize ratings with decoupling normalization
  • Extract popular movies dataset and compact ratings dataset.

Framework & Database

Algorithm

  • User-based collaborative filtering
    • Draw a number of movies for the user to rate. (Only draw from movies with > 5,000 ratings to increase the chance that the user has known some of them before)

    • Based on submitted ratings, find raters in database who have also rated the same movies and compute similarities with the user for all raters found. (To reduce time cost, compact ratings dataset can be used at this step)

    • Search for ratings of all raters found, and compute predicted scores on movies they rated. (To reduce time cost, 100 most similar raters are used)

    • Sort out movies with highest scores and recommend to the user. (Aside from top 10 from popular movies with > 5,000 ratings, top 10 from unpopular ones with < 5,000 ratings are also recommended to tackle 'long tail' problem, as to provide harder-to-find, unexpected discoveries)

Other Tools

License

movie-recommender's People

Contributors

yunxiaoli2017 avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.