Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
Movie recommender
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Frank Sauerburger
Movie recommender
Commits
2fd8ca7c
Verified
Commit
2fd8ca7c
authored
2 years ago
by
Frank Sauerburger
Browse files
Options
Downloads
Patches
Plain Diff
Improve code style
parent
8fbc5369
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
movies.py
+5
-4
5 additions, 4 deletions
movies.py
movies_test.py
+10
-7
10 additions, 7 deletions
movies_test.py
with
15 additions
and
11 deletions
movies.py
+
5
−
4
View file @
2fd8ca7c
"""
Movie recommender system as a showcase project
"""
import
collections
import
pandas
as
pd
import
tensorflow
as
tf
#
import tensorflow as tf
def
load_movielense
():
"""
Load an return movies and ratings as dataframes
"""
...
...
@@ -24,6 +28,3 @@ def collect_user_context(ratings, min_rating=2.1):
user_movies
[
user_id
].
append
(
movie_id
)
return
user_movies
This diff is collapsed.
Click to expand it.
movies_test.py
+
10
−
7
View file @
2fd8ca7c
import
pandas
as
pd
"""
Test cases for the movie recommender system
"""
import
unittest
import
pandas
as
pd
import
movies
class
LoadTests
(
unittest
.
TestCase
):
...
...
@@ -9,20 +13,19 @@ class LoadTests(unittest.TestCase):
@staticmethod
def
toy_ratings
():
"""
Return a toy dataframe with ratings
"""
return
pd
.
DataFrame
(
data
=
{
return
pd
.
DataFrame
({
"
userId
"
:
[
1
,
1
,
2
,
2
,
1
],
"
movieId
"
:
[
1
,
2
,
1
,
3
,
4
],
"
rating
"
:
[
3
,
1
,
4
,
3
,
5
],
"
timestamp
"
:
[
1
,
2
,
7
,
5
,
4
],
},
columns
=
[
"
userId
"
,
"
movieId
"
,
"
rating
"
,
"
timestamp
"
])
def
test_collect_user_context
(
self
):
"""
Check that ratings are correctly aggregated
"""
rating
=
self
.
toy_ratings
()
user_movies
=
movies
.
collect_user_context
(
rating
)
self
.
assertEqual
(
user_movies
[
1
],
[
1
,
4
])
self
.
assertEqual
(
user_movies
[
2
],
[
3
,
1
])
self
.
assertEqual
(
set
(
user_movies
.
keys
()),
{
1
,
2
})
self
.
assertEqual
(
user_movies
[
1
],
[
1
,
4
])
self
.
assertEqual
(
user_movies
[
2
],
[
3
,
1
])
self
.
assertEqual
(
set
(
user_movies
.
keys
()),
{
1
,
2
})
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment