Giter Site home page Giter Site logo

thegenuinegourav / movies-recommender Goto Github PK

View Code? Open in Web Editor NEW
13.0 2.0 4.0 688 KB

A system to recommend movies according to ratings provided by users using Collaborative Filtering Learning Algorithm.

MATLAB 100.00%
movies-recommendation recommender-system recommendation-algorithms matlab octave collaborative-filtering machine-learning machine-learning-algorithms

movies-recommender's Introduction

Movies Recommender

A system to recommend movies according to ratings provided by users using Collaborative Filtering Learning Algorithm.

Description ๐Ÿ“’

This system will implement the collaborative filtering learning algorithm and apply it to a dataset of movie ratings.
This dataset consists of ratings on a scale of 1 to 5. The dataset has n(u) = 943 users, and n(m) = 1682 movies.
The matrix Y (a num movies X num users matrix) stores the ratings y(i,j) (from 1 to 5).
The matrix R is an binary-valued indicator matrix, where R(i,j) = 1 if user j gave a rating to movie i, and R(i; j) = 0 otherwise.
The objective of collaborative filtering is to predict movie ratings for the movies that users have not yet rated, that is, the entries with R(i,j) = 0.
This will allow us to recommend the movies with the highest predicted ratings to the user.

How it works โ“

Step 1: Modify 'recommender' script to input your own ratings against different movies.
Step 2: Run 'recommender' script in your Octave/Matlab command window.
Step 3: This run 100 iterations, first to train & then outputs the movies best suited for you (recommended).

Output

Development

Want to contribute? ๐Ÿ“

To fix a bug or enhance an existing module, follow these steps:

  1. Fork the repo
  2. Create a new branch (git checkout -b exciting-stuff)
  3. Make the appropriate changes in the files
  4. Add changes to reflect the changes made
  5. Commit your changes (git commit -am 'exciting-stuff!!')
  6. Push to the branch (git push origin exciting-stuff)
  7. Create a Pull Request

Interested?

If you find a bug (the system couldn't handle the query and / or gave irrelevant results), kindly open an issue here by including your search query and the expected result.

If you'd like to request a new functionality, feel free to do so by opening an issue here including some sample queries and their corresponding results.

How to Build

  • launch Octave/Matlab
  • select Open command window
  • select the project folder
  • type 'recommender' on command window

Articles to Learn

movies-recommender's People

Contributors

thegenuinegourav avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

movies-recommender's Issues

Predicted rating higher than 5

If you comment out following lines of recommender.m, the predicted rating exceeds 5 which is obviously not correct.

Y = [my_ratings Y];
R = [(my_ratings ~= 0) R];

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.