We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://github.com/NVIDIA-Merlin/Merlin/blob/9802eaef0515729146b7b50fd1e737b745d44525/examples/getting-started-movielens/01-Download-Convert.ipynb
ratings = df_lib.read_csv(os.path.join(INPUT_DATA_DIR, "ml-25m", "ratings.csv")) --- ratings = ratings.drop("timestamp", axis=1) # convert ratings to pandas df to use sklearn train_test_split func ratings = ratings.to_pandas() train, valid = train_test_split(ratings, test_size=0.2, random_state=42)
on a cpu-only system, ratings is already a pandas dataframe and ratings.to_pandas doesn't exist.
ratings
ratings.to_pandas
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
https://github.com/NVIDIA-Merlin/Merlin/blob/9802eaef0515729146b7b50fd1e737b745d44525/examples/getting-started-movielens/01-Download-Convert.ipynb
on a cpu-only system,
ratings
is already a pandas dataframe andratings.to_pandas
doesn't exist.The text was updated successfully, but these errors were encountered: