Skip to content
Snippets Groups Projects
Verified Commit 2fd8ca7c authored by Frank Sauerburger's avatar Frank Sauerburger
Browse files

Improve code style

parent 8fbc5369
No related branches found
No related tags found
No related merge requests found
"""
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
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})
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment