Skip to content

nnguyenu/Movie-Recommendation

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Movie-Recommendation

INTRODUCTION

This is my Christmas project. You will put your own rating of some movies (from 0 to 5) and after 6 movies, you can get recommendation about similar movies. To find similar movies, I use Collaboraive filtering and KNN.

The dataset is MovieLens 100K Dataset so you can only rate movies before 1998 :(

REQUIREMENTS

To use this project, you need to install

INSTALLATION

pip3 install virtual env
virtual env
source env/bin/activate
pip3 install flask flask-alchemy
pip3 install pandas
pip3 install scikit-learn

Add database:

python3
>>> from app import app, db
>>> app.app_context().push()
>>> db.create_all()
>>> exit()

RUNNING

python app.py

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages