script for recommending shows to watch
- Python installed on your system
- SpaCy library (
spacy
) and theen_core_web_md
language model.
You can install SpaCy and the model using the following commands:
pip install spacy
python -m spacy download en_core_web_md
git clone https://github.com/AustinMaturure/watchnext
cd your-clone
pip install -r requirements.txt
python watch_next.py
- Ensure you have Python installed on your machine.
- Install the required dependencies using the provided
requirements.txt
file. - Prepare a file (
movies.txt
) with movie titles and descriptions in the formattitle:description
. - Run the script by providing a description, and it will recommend the most similar movie from the file.
python recommend_movie.py
- spacy==3.1.3
- en-core-web-md==3.1.0
- Build the Docker image:
docker build -t watch_next
docker run -it watch_next