Last active
February 22, 2020 18:41
-
-
Save dpoulopoulos/1e2aade4718b41c2dbf6f53035cade19 to your computer and use it in GitHub Desktop.
How many unique users and items are in movielens 1m dataset.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| n_users = ratings_df['user_code'].max() + 1 | |
| n_movies = ratings_df['movie_code'].max() + 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment