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
3a995bbe
Verified
Commit
3a995bbe
authored
2 years ago
by
Frank Sauerburger
Browse files
Options
Downloads
Patches
Plain Diff
Dump movie indices and titles
parent
24cfd489
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#9621
passed
2 years ago
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
movies.py
+34
-2
34 additions, 2 deletions
movies.py
movies_test.py
+42
-1
42 additions, 1 deletion
movies_test.py
with
76 additions
and
3 deletions
movies.py
+
34
−
2
View file @
3a995bbe
...
...
@@ -5,8 +5,10 @@ Movie recommender system as a showcase project
import
argparse
import
collections
import
random
import
json
import
os
import
random
import
re
import
pandas
as
pd
import
tensorflow
as
tf
...
...
@@ -79,6 +81,23 @@ def create_user_examples(user_histories, frac=0.8, random_seed=20220827, **kwds)
return
train_examples
,
test_examples
def
parse_title_year
(
movie_name
):
"""
Return (title, year) from full title
"""
pattern
=
r
"
^\s*(.+\S)\s+\((\d+)\)\s*$
"
rem
=
re
.
match
(
pattern
,
movie_name
)
if
rem
:
return
rem
.
group
(
1
),
int
(
rem
.
group
(
2
))
return
movie_name
,
None
def
index_titles
(
movies_df
):
"""
Create dict index of titles
"""
titles
=
{}
for
movie_id
,
title
,
_
in
movies_df
.
values
:
titles
[
movie_id
]
=
parse_title_year
(
title
)
return
titles
def
write_user_examples
(
examples
,
filename
):
"""
Write examples to rt Record
"""
progress_bar
=
tf
.
keras
.
utils
.
Progbar
(
len
(
examples
))
...
...
@@ -88,9 +107,15 @@ def write_user_examples(examples, filename):
progress_bar
.
add
(
1
)
def
write_movie_titles
(
titles
,
filename
):
"""
Write movie titles to json file
"""
with
open
(
filename
,
"
w
"
,
encoding
=
"
utf-8
"
)
as
fileobj
:
json
.
dump
(
titles
,
fileobj
)
def
prepare_dataset
(
args
):
"""
Read raw CSV files and write TF Record
"""
ratings_df
,
_
=
load_movielense
()
ratings_df
,
movies_df
=
load_movielense
()
if
args
.
debug
:
ratings_df
=
ratings_df
[:
10000
]
...
...
@@ -108,6 +133,13 @@ def prepare_dataset(args):
print
(
f
"
File
{
test_file
}
with
{
n_test
:
d
}
records created.
"
)
movie_titles
=
index_titles
(
movies_df
)
titles_file
=
os
.
path
.
join
(
args
.
output
,
"
titles.json
"
)
write_movie_titles
(
movie_titles
,
titles_file
)
n_titles
=
len
(
titles_file
)
print
(
f
"
File
{
titles_file
}
with
{
n_titles
:
d
}
titles created.
"
)
commands
=
{
"
prepare
"
:
prepare_dataset
,
}
...
...
This diff is collapsed.
Click to expand it.
movies_test.py
+
42
−
1
View file @
3a995bbe
...
...
@@ -92,7 +92,7 @@ class LoadTests(unittest.TestCase):
def
test_user_examples_empty
(
self
):
"""
Test the window sliding with c
on
stom args
"""
"""
Test the window sliding with c
u
stom args
"""
history
=
[
1
,
2
,
3
]
examples
=
movies
.
create_single_user_examples
(
history
)
self
.
assertEqual
(
len
(
examples
),
0
)
...
...
@@ -100,3 +100,44 @@ class LoadTests(unittest.TestCase):
history
=
[]
examples
=
movies
.
create_single_user_examples
(
history
)
self
.
assertEqual
(
len
(
examples
),
0
)
def
test_parse_title_year
(
self
):
"""
Test year parsing
"""
title
,
year
=
movies
.
parse_title_year
(
"
Hello (2022)
"
)
self
.
assertEqual
(
title
,
"
Hello
"
)
self
.
assertEqual
(
year
,
2022
)
def
test_parse_title_year_whitespace
(
self
):
"""
Test year parsing with white space
"""
title
,
year
=
movies
.
parse_title_year
(
"
Hello (2022)
"
)
self
.
assertEqual
(
title
,
"
Hello
"
)
self
.
assertEqual
(
year
,
2022
)
def
test_parse_title_year_no_year
(
self
):
"""
Test year parsing without year
"""
title
,
year
=
movies
.
parse_title_year
(
"
No time for a year
"
)
self
.
assertEqual
(
title
,
"
No time for a year
"
)
self
.
assertIsNone
(
year
)
@staticmethod
def
toy_movies
():
"""
Return toy movie dataframe
"""
return
pd
.
DataFrame
({
"
movieId
"
:
[
1
,
2
],
"
title
"
:
[
"
Hello (2020)
"
,
"
Hello again (2021)
"
],
"
genres
"
:
[
"
Thriller
"
,
"
Romcom
"
]
},
columns
=
[
"
movieId
"
,
"
title
"
,
"
generes
"
])
def
test_index_titles
(
self
):
"""
Check indexing movie titles
"""
movies_df
=
self
.
toy_movies
()
titles
=
movies
.
index_titles
(
movies_df
)
self
.
assertEqual
(
titles
[
1
],
(
"
Hello
"
,
2020
))
self
.
assertEqual
(
titles
[
2
],
(
"
Hello again
"
,
2021
))
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