https://github.com/shubham1710/movie-recommendation-system
Built a Movie Recommendation System which will take as input a movie title from the user and return the top 50 recommended movies to the user based on the input movie.
https://github.com/shubham1710/movie-recommendation-system
machine-learning movie-recommendation recommendation-engine
Last synced: 3 months ago
JSON representation
Built a Movie Recommendation System which will take as input a movie title from the user and return the top 50 recommended movies to the user based on the input movie.
- Host: GitHub
- URL: https://github.com/shubham1710/movie-recommendation-system
- Owner: shubham1710
- License: gpl-3.0
- Created: 2020-06-20T09:09:43.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-07-28T14:08:27.000Z (over 3 years ago)
- Last Synced: 2025-07-05T01:07:51.145Z (4 months ago)
- Topics: machine-learning, movie-recommendation, recommendation-engine
- Language: Python
- Homepage:
- Size: 5.97 MB
- Stars: 11
- Watchers: 3
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Movie-Recommendation-System
Built a Movie Recommendation System which will take as input a movie title from the user and return the top 50 recommended movies to the user based on the input movie.
We will use a movie dataset for our purpose. We will filter out which features to include to train our model and which features to exclude as there are many features which have no significance for recommendation purposes.
We will use difflib library here to find most common movie title to the one provided by user to account for spelling mistakes and typos. This helps us to avoid errors and make our model more usable.
Here we will be using count vectorizer and will calculate cosine values to find out similarities so as to return to user the top 50 movies they should watch after the one they provided. It is a content based recommendation system and works pretty well!