Created
January 29, 2022 18:56
-
-
Save erap129/98c8873071c23ca734a2534c2e28e1e1 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
ratings_df = pd.read_csv(f'{BASE_FOLDER}/MovieLens-1M/ratings.dat', | |
delimiter='::', engine='python', header=None, | |
names=['user_id', 'movie_id', 'rating', 'time']) | |
ratings_df.head() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment