{"id":26972638,"url":"https://github.com/guy1998/movie-recommendation-system","last_synced_at":"2025-10-12T17:37:46.225Z","repository":{"id":214361480,"uuid":"736327862","full_name":"guy1998/Movie-recommendation-system","owner":"guy1998","description":"A system that recommends movies based on your search history and your friends recommendations. ","archived":false,"fork":false,"pushed_at":"2024-10-15T16:26:58.000Z","size":5297,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-10-16T22:16:49.365Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/guy1998.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-12-27T15:54:07.000Z","updated_at":"2024-10-15T16:27:02.000Z","dependencies_parsed_at":"2024-01-18T09:26:02.178Z","dependency_job_id":"54d86bda-ae5c-4ec2-aeda-9e893f48d12b","html_url":"https://github.com/guy1998/Movie-recommendation-system","commit_stats":null,"previous_names":["guy1998/movie-recommendation-system"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/guy1998%2FMovie-recommendation-system","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/guy1998%2FMovie-recommendation-system/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/guy1998%2FMovie-recommendation-system/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/guy1998%2FMovie-recommendation-system/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/guy1998","download_url":"https://codeload.github.com/guy1998/Movie-recommendation-system/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246970318,"owners_count":20862509,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-04-03T09:18:19.117Z","updated_at":"2025-10-12T17:37:46.159Z","avatar_url":"https://github.com/guy1998.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Movie-recommendation-system\n\n***\n\n## General description of the project\nThis is a project with focus on recommendation systems and how they function. The information used is based on the movie dataset provided by kaggle which can be found at the link in resources section. The program designed is a hybrid recommendation system which employs both collaborative filtering and content filtering. This is manifested in the two main features of the program which are providing a personal recommendation and providing trending recommendations. To provide personal recommendation the system relies on previous movies the user has interacted with to generate a list of similar movies from the dataset using cosine similarity. For each movie in the interaction list about 35 similar movies are picked and the recommendation is created by taking the intersection of each movie list. This way the user is likely to get movies that he will enjoy. On the other hand, to provide the trending recommendation the system relies on the interaction list of each user. It generates the personal recommendation of each user and then takes the intersaction of the personal recommendations. On the next version of the system this feature will be updated so that the first 10 movies on each personal recommendation are joined an the other movies are intersected to create the final trending recommendation. \u003cbr\u003e\nSince the system currently has the goal of simply simulating a hybrid recommendation system, the interaction of the user with the movies is minimal. The user can search for the movies and put them in his interaction list by pressing like. In the next version of the app the dislike feature will also be provided. The application currently maintains states of previous recommendations. This is done because creating a new recommendation is a time-consuming task so it should be avoided if the interaction lists of users have not changed in a while.\n\n## GUI : 🖥️\n\nThe user interface for this program is developed using python and tkinter library especially. More information on tkinter library can be found at: https://docs.python.org/3/library/tkinter.html . The goal of the interface is to visualize the work of a recommendation system. A login system is provided to differentiate between users just like it would be in a real recommending system.\n\u003cp align=\"center\"\u003e\n  \u003cimg width=\"960\" alt=\"image\" src=\"https://github.com/guy1998/Movie-recommendation-system/assets/104024859/8ee0dfd2-6500-499d-a4cf-7a24478d6577\"\u003e\n  \u003cp align=\"left\"\u003e\n    The image above displays the login page. Is obviously a simple login page with the text field corresponding to username and the password field. \n  \u003c/p\u003e\n  \u003cimg width=\"960\" alt=\"image\" src=\"https://github.com/guy1998/Movie-recommendation-system/assets/104024859/c823a4f4-f4be-4900-957c-6de03bd6a845\"\u003e\n  \u003cp align=\"left\"\u003e\n    The user is allowed to search movies and is displayed the information for each movie he searches. This is displayed on the image above. The image below shows how the program displays the recommendation when the user requests one.\n  \u003c/p\u003e\n  \u003cimg width=\"959\" alt=\"image\" src=\"https://github.com/guy1998/Movie-recommendation-system/assets/104024859/b278bb36-f965-4f87-9e9b-a88b61274c9f\"\u003e\n\u003c/p\u003e\n\n## Resources\n\nThe dataset for this project can be found at: https://www.kaggle.com/datasets/rounakbanik/the-movies-dataset\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fguy1998%2Fmovie-recommendation-system","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fguy1998%2Fmovie-recommendation-system","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fguy1998%2Fmovie-recommendation-system/lists"}