├── .gitattributes ├── Procfile ├── README.md ├── __pycache__ └── main.cpython-37.pyc ├── app.yaml ├── create.py ├── data.csv ├── main.py ├── movie_metadata.csv ├── preprocessing.ipynb ├── requirements.txt ├── static ├── favicon.png └── profile.jpg └── templates ├── base.html ├── home.html └── recommend.html /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dis-is-pj/Movie-Recommender-System/HEAD/.gitattributes -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn main:app 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dis-is-pj/Movie-Recommender-System/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/main.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dis-is-pj/Movie-Recommender-System/HEAD/__pycache__/main.cpython-37.pyc -------------------------------------------------------------------------------- /app.yaml: -------------------------------------------------------------------------------- 1 | runtime: python37 -------------------------------------------------------------------------------- /create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dis-is-pj/Movie-Recommender-System/HEAD/create.py -------------------------------------------------------------------------------- /data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dis-is-pj/Movie-Recommender-System/HEAD/data.csv -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dis-is-pj/Movie-Recommender-System/HEAD/main.py -------------------------------------------------------------------------------- /movie_metadata.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dis-is-pj/Movie-Recommender-System/HEAD/movie_metadata.csv -------------------------------------------------------------------------------- /preprocessing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dis-is-pj/Movie-Recommender-System/HEAD/preprocessing.ipynb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dis-is-pj/Movie-Recommender-System/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dis-is-pj/Movie-Recommender-System/HEAD/static/favicon.png -------------------------------------------------------------------------------- /static/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dis-is-pj/Movie-Recommender-System/HEAD/static/profile.jpg -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dis-is-pj/Movie-Recommender-System/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dis-is-pj/Movie-Recommender-System/HEAD/templates/home.html -------------------------------------------------------------------------------- /templates/recommend.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dis-is-pj/Movie-Recommender-System/HEAD/templates/recommend.html --------------------------------------------------------------------------------