You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, thanks for your good work.
In python/utils/tasks.py, you used dataframe.as_matrix(). However, I found pandas has deprecated as_matrix() function after version 0.23.0; it results in an error now. We can use to_numpy() instead.
Hi, thanks for your good work.
In python/utils/tasks.py, you used dataframe.as_matrix(). However, I found pandas has deprecated as_matrix() function after version 0.23.0; it results in an error now. We can use to_numpy() instead.
https://pandas.pydata.org/pandas-docs/version/0.25.1/reference/api/pandas.DataFrame.as_matrix.html
https://pandas.pydata.org/pandas-docs/version/0.25.1/reference/api/pandas.DataFrame.to_numpy.html#pandas.DataFrame.to_numpy
The text was updated successfully, but these errors were encountered: