-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodel.py
145 lines (98 loc) · 4.32 KB
/
model.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
"""Models and database functions for Ratings project."""
from flask_sqlalchemy import SQLAlchemy
import correlation
# This is the connection to the PostgreSQL database; we're getting this through
# the Flask-SQLAlchemy helper library. On this, we can find the `session`
# object, where we do most of our interactions (like committing, etc.)
db = SQLAlchemy()
##############################################################################
# Model definitions
class User(db.Model):
"""User of ratings website."""
__tablename__ = "users"
user_id = db.Column(db.Integer, autoincrement=True, primary_key=True)
email = db.Column(db.String(64), nullable=True)
password = db.Column(db.String(64), nullable=True)
age = db.Column(db.Integer, nullable=True)
zipcode = db.Column(db.String(15), nullable=True)
def similarity(self, other):
"""Return Pearson rating for user compared to other user."""
u_ratings = {}
paired_ratings = []
for r in self.ratings:
u_ratings[r.movie_id] = r
for r in other.ratings:
u_r = u_ratings.get(r.movie_id)
if u_r:
paired_ratings.append((u_r.score, r.score))
if paired_ratings:
return correlation.pearson(paired_ratings)
else:
return 0.0
def predict_rating(self, movie):
"""Predict a user's rating of a movie."""
other_ratings = movie.ratings
similarities = [
(self.similarity(r.user), r)
for r in other_ratings
]
similarities.sort(reverse=True)
similarities = [(sim, r) for sim, r in similarities if sim > 0]
if not similarities:
return 1
numerator = sum([r.score * sim for sim, r in similarities])
denominator = sum([sim for sim, r in similarities])
return numerator / denominator
def __repr__(self):
"""Provide helpful representation when printed."""
return "<User user_id=%s email=%s>" % (self.user_id,
self.email)
# Put your Movie and Rating model classes here.
class Movie(db.Model):
"""Movie info of ratings website."""
__tablename__ = "movies"
movie_id = db.Column(db.Integer, autoincrement=True, primary_key=True)
title = db.Column(db.String(100), nullable=True)
released_at = db.Column(db.DateTime, nullable=True)
imdb_url = db.Column(db.String(200), nullable=True)
def __repr__(self):
"""Provide helpful representation when printed."""
return "<Movie movie_id=%s title=%s>" % (self.movie_id,
self.title)
class Rating(db.Model):
"""Ratings data of ratings website."""
__tablename__ = "ratings"
rating_id = db.Column(db.Integer, autoincrement=True, primary_key=True)
movie_id = db.Column(db.Integer,
db.ForeignKey('movies.movie_id'),
nullable=False)
user_id = db.Column(db.Integer,
db.ForeignKey('users.user_id'),
nullable=False)
score = db.Column(db.Integer, nullable=False)
user = db.relationship("User",
backref=db.backref("ratings",
order_by=rating_id))
movie = db.relationship("Movie",
backref=db.backref("ratings",
order_by=rating_id))
def __repr__(self):
"""Provide helpful representation when printed."""
s = "<Rating rating_id=%s movie_id=%s user_id=%s score=%s>"
return s % (self.rating_id, self.movie_id, self.user_id,
self.score)
##############################################################################
# Helper functions
def connect_to_db(app):
"""Connect the database to our Flask app."""
# Configure to use our PstgreSQL database
app.config['SQLALCHEMY_DATABASE_URI'] = 'postgresql:///ratings'
app.config['SQLALCHEMY_TRACK_MODIFICATIONS'] = False
db.app = app
db.init_app(app)
if __name__ == "__main__":
# As a convenience, if we run this module interactively, it will leave
# you in a state of being able to work with the database directly.
from server import app
connect_to_db(app)
print "Connected to DB."