Skip to content

Commit

Permalink
clean up a little logging
Browse files Browse the repository at this point in the history
  • Loading branch information
mdekstrand committed Dec 11, 2018
1 parent 79f7ee4 commit 625bb1a
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion lenskit/algorithms/als.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,6 @@ def _normalize(self, ratings, users, items, bias):
"Apply bias normalization to the data in preparation for training."
n_users = len(users)
n_items = len(items)
_logger.info('shape %dx%d, u %d, i %d', ratings.nrows, ratings.ncols, n_users, n_items)
assert ratings.nrows == n_users
assert ratings.ncols == n_items

Expand Down

0 comments on commit 625bb1a

Please sign in to comment.