Movie recommender AI. Trained on the MovieLens dataset.
https://martinkondor.github.io/MovieRecommender/
- Python 3.6+
- Anaconda 4+ (optional)
- Python modules from the
requirements.txt
Dowload and install the dependencies with the command:
$ python -m pip install -r requirements.txt
You can try it online: https://martinkondor.github.io/MovieRecommender/.
Or You have to run the python file, and give the liked movie's title as an argument:
$ python rmovie.py "MOVIE TITLE"
You can also specify the year in which the movie was released, in this case, you have to put the year in brackets in the same first argument:
$ python rmovie.py "MOVIE TITLE (YEAR)"
- Works with any case (lower or upper)
- The word "the" is always ignored
- You can put the year of the movie inside brackets like: (2020)
Valid request examples:
$ python rmovie.py "Shawshank Redemption"
$ python rmovie.py "lord of the rings"
$ python rmovie.py "STAR WARS"
$ python rmovie.py "STAR WARS (1977)"
$ python rmovie.py "tOy StOrY"
This project is open for any kind of contribution from anyone.
- Fork this repository
- Create a new branch (optional)
- Clone it
- Make your changes
- Upload them
- Make a pull request here
Copyright (C) 2022 Martin Kondor.
See the LICENSE file for details.