Movie Recommender System
🎬 Project: Movie Recommender System 👨💻 Author: Shailesh Gupta 🔗 GitHub: View Source Code 🧠 What is this project about? This is a content-based movie recommendation system that suggests similar movies based on your selected title. It uses movie metadata (genres, tags, cast, crew) to compute similarity scores and recommend relevant titles. The model uses TF-IDF vectorization and cosine similarity to find the top 5 similar movies from a large movie dataset. 📦 Key Features: Combines features like overview, cast, genres, and keywords into a single vector Similarity computed using cosine_similarity from scikit-learn Interactive Streamlit frontend with easy-to-use dropdown for movie selection Top 5 movie recommendations displayed with titles and (where available) posters ⚠️ Deployment Note: This app could not be hosted on Streamlit Cloud due to GitHub file size limitations. Some files like tmdb_5000_movies.csv and pickled models are large and ...