Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chandru-21/end-to-end-movie-recommendation-system-with-deployment-using-docker-and-kubernetes
Content Based Recommendation system uses attributes of the content to recommend similar content. It doesn't have a cold-start problem because it works through attributes or tags of the content, such as actors, genres or directors, so that new movies can be recommended right away.
https://github.com/chandru-21/end-to-end-movie-recommendation-system-with-deployment-using-docker-and-kubernetes
contentbasedfiltering docker endtoend endtoendpipeline kubernetes machine-learning movie-recommendation movierecommendationsystem nlp python recommendation-system recommender-system streamlit streamlit-webapp
Last synced: 3 months ago
JSON representation
Content Based Recommendation system uses attributes of the content to recommend similar content. It doesn't have a cold-start problem because it works through attributes or tags of the content, such as actors, genres or directors, so that new movies can be recommended right away.
- Host: GitHub
- URL: https://github.com/chandru-21/end-to-end-movie-recommendation-system-with-deployment-using-docker-and-kubernetes
- Owner: Chandru-21
- Created: 2021-08-24T10:16:15.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-05-02T09:13:48.000Z (almost 3 years ago)
- Last Synced: 2023-09-06T13:30:01.606Z (over 1 year ago)
- Topics: contentbasedfiltering, docker, endtoend, endtoendpipeline, kubernetes, machine-learning, movie-recommendation, movierecommendationsystem, nlp, python, recommendation-system, recommender-system, streamlit, streamlit-webapp
- Language: Python
- Homepage: http://35.230.8.59/
- Size: 5.17 MB
- Stars: 7
- Watchers: 1
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Movie_Recommendation_System :
https://medium.com/geekculture/end-to-end-movie-recommendation-system-49b29a8b57ac#:~:text=This%20method%20uses%20attributes%20of,can%20be%20recommended%20right%20away.STEP 1:Data Scraping
Data was Scraped from IMDB website(using beautiful soup).Refer Web Scraping_new.py script in this repository.
This dataset consists of top 1000 movies based on popularity and the range(count) of movies can be modified in the above mentioned python script based on preference.STEP 2:Creating a Content Based Recommendation system(Refer Content based recommendation.py file)
Content-based filtering uses item features to recommend other items similar to what the user likes, based on their previous actions or explicit feedback.
![image](https://user-images.githubusercontent.com/64595758/130803753-2211bcc9-a9f2-4bf8-952f-b9f044130f33.png)
STEP 3:Creating a frontend for model serving
For this model I have created a frontend based on streamlit application.
This application fetches input from the user and provides top 5 similar movies based on the input.This is all done with the help of recommendation system that we have created in the above step.STEP 4:Model Deployment
Created model has been containerized using docker and its been pushed to container repository.
Its then deployed in Kubernetes to manage and increase scalability of the application.![image](https://user-images.githubusercontent.com/64595758/130807050-ab633c7c-5f54-448a-9fc7-aa680756736d.png)
Application url- http://35.230.8.59/
This application frontend is dynamic and changes based on system theme.If you want the same appearance as seen in above image please go to settings in the top right corner of this application and change the theme to dark.
P.S-This is a simple model built out of curiosity.There are lot more complex and advanced algorithms that could be implemented to create a recommendation engine.
I hope this a stepping stone for more advanced things.
Happy Learning!