Welcome to Movie Alchemy, a Movie Recommendation System. It provides personalized movie suggestions based on the TMDB dataset and is powered by Python and Streamlit. It is a project completed in the fourth semester of my Software Engineering degree. Explore genres, get recommendations, and immerse yourself in the magic of Movie Alchemy!
- Recommendation Logic
- Frontend Technology + API Integration
- Our project is enriched with data from Kaggle's "TMDB 5000 Movie Dataset," sourced from The Movie Database (TMDb). Following a DMCA takedown request regarding the original IMDB-based dataset, Kaggle replaced it with this comparable dataset from TMDb, ensuring compliance with terms of use. This dataset provides extensive information about plot, cast, crew, budget, revenues, and more for thousands of films, including full credits for both cast and crew.
-
- Image showcasing the homepage of the Movie Recommendation Alchemy app.
-
Genre Selection :
-
- Image displaying the final movie recommendation provided by Movie Alchemy.
- Ensure you have Python installed on your system.
- Clone this repository to your local machine.
- Create a virtual environment for the project.
python -m venv venv
- Activate the virtual environment.
- On Windows:
.\venv\Scripts\activate
- On macOS and Linux:
source venv/bin/activate
- Install the required packages using the provided
requirements.txt
.pip install -r requirements.txt
- Run the Streamlit app.
streamlit run main.py
- Open your web browser and navigate to the provided local address to explore Movie Alchemy.
- Open the Jupyter Notebook using the following command:
jupyter notebook Movie-Alchemy.ipynb
- Run the notebook cells to execute the recommendation logic and generate the necessary outputs.
- Save the trained model as a Pickle (pkl) file for later use in the Streamlit app.
Feel free to fork this repository, make modifications, and contribute to the enhancement of Movie Alchemy. Your contributions are valuable in making this project even better!
Happy exploring!