Movie Recommender Model is a program which uses scikit-learn library to find smilar movies from the movies dataset and return it to the user. This repo has 2 versions i.e. A Console Version and A Web Interface Version which uses flask server.
- Clone this repository:
git clone https://github.com/Nitesh-13/Movie-Recommendation-Model.git
- Use the package manager pip to install all the required modules listed in requirements.txt.
pip install -r /path/to/requirements.txt
-
Now run the python program. If you are running the web app , after executing the script, visit "127.0.0.1" to view the program.
-
When modifying, the directory structure is as follows
Movie-Recommendation-Model/ ├── static/ │ ├── css/ │ │ └── style.css /*Css Styles*/ │ ├── js/ │ │ └── script.js /*Js Script*/ │ ├── img/ │ │ └── image.png /*If Any present*/ │ └── favicon.ico ├── templates/ │ └── index.html ├── web_app.py ├── movie_dataset.csv ├── .gitignore └── requirements.txt
We welcome and greatly appreciate any and all pull requests from the community, as they help to improve and enhance the quality of our project.