An open API service indexing awesome lists of open source software.

https://github.com/harshitaphadtare/moive-recommender-system

A content-based movie recommender system suggests movies to users based on the similarity of movie attributes. It analyzes features like genre, actors, directors, and plot keywords to find movies that match the user's preferences.
https://github.com/harshitaphadtare/moive-recommender-system

data numpy python stemming vectorization

Last synced: about 1 month ago
JSON representation

A content-based movie recommender system suggests movies to users based on the similarity of movie attributes. It analyzes features like genre, actors, directors, and plot keywords to find movies that match the user's preferences.

Awesome Lists containing this project

README

          

# movie recommender system
The following steps outline the methodology behind the Movie Recommender System:

Data Collection - Gather comprehensive data on movies, including attributes such as genre, plot summaries, and other relevant features.

Vectorization - Transform movie descriptions into high-dimensional vectors using advanced vectorization techniques. This step ensures a numerical representation of textual data for efficient analysis.

Stemming - Apply stemming to each word in movie descriptions, reducing them to their root form. This process simplifies the comparison of textual information and improves the system's ability to identify commonalities.