Skip to content
New issue

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

geometric_gnn_101.ipynb : As of Pandas 2.0, the Pandas append() method is no longer supported. #14

Open
smg3d opened this issue Aug 2, 2024 · 0 comments

Comments

@smg3d
Copy link

smg3d commented Aug 2, 2024

As of Pandas 2.0, the Pandas append() method is no longer supported.

Since running this notebook "as is" will install a 2.x version of pandas, the use of pandas append() will fail, as in :

DF_RESULTS = pd.DataFrame(columns=["Test MAE", "Val MAE", "Epoch", "Model"])
DF_RESULTS = DF_RESULTS.append(df_temp, ignore_index=True)

Either forcing a < 2.0 pandas installation or replacing the pandas.DataFrame.append() calls with the pandas.concat() function works.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant