Created
March 27, 2019 05:59
-
-
Save pytholabsbot1/ea27704ff41cf7d52dce627cdabaafc1 to your computer and use it in GitHub Desktop.
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
r_cols = ['user_id', 'movie_id', 'rating', 'unix_timestamp'] | |
ratings_train = pd.read_csv('ml-100k/ua.base', sep='\t', names=r_cols, encoding='latin-1') | |
ratings_test = pd.read_csv('ml-100k/ua.test', sep='\t', names=r_cols, encoding='latin-1') | |
ratings_train.shape, ratings_test.shape |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment