Skip to content

Commit

Permalink
update splitting for user profiles
Browse files Browse the repository at this point in the history
  • Loading branch information
mdekstrand committed Aug 7, 2024
1 parent e1f249a commit bb5860a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lenskit/lenskit/splitting/users.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,9 @@ def _make_split(
test = {}

for u in test_us:
row = data.user_row(u)
profile = data.user_row(u)
assert profile is not None
row = profile.item_list()
assert row is not None
u_test = method(row)
test[u] = u_test
Expand Down

0 comments on commit bb5860a

Please sign in to comment.