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
10 Minutes to cuDF And Dask-cuDF notebook returns an error when executed
Location of incorrect documentation
Notebook is here in docs
and here in git Describe the problems or issues found in the documentation
cell 53 gives a recursion error: RecursionError: maximum recursion depth exceeded while calling a Python object
cell 65 and 66 give an attribute error: AttributeError: DataFrame object has no attribute as_matrix
Steps taken to verify documentation is incorrect
cloned the cuDF repo, executed the notebook using Restart Kernel and Run All Cells from the Kernel menu.
executing in a 22.04 RAPIDS kernel, built using RAPIDS Release selector tool, with conda and 22.04 (Nightly) on 8th March 2022.
Suggested fix for documentation
to fix 2. above, the .as_matrix() in cells 65 and 66 should be replaced by .as_numpy()
The text was updated successfully, but these errors were encountered:
@sophwats Thanks for reporting. I addressed (2) in PR #10531, but I couldn't reproduce (1) using the latest build of cuDF 22.04. Perhaps it was fixed in the interim?
10 Minutes to cuDF And Dask-cuDF notebook returns an error when executed
Location of incorrect documentation
Notebook is here in docs
and here in git
Describe the problems or issues found in the documentation
RecursionError: maximum recursion depth exceeded while calling a Python object
AttributeError: DataFrame object has no attribute as_matrix
Steps taken to verify documentation is incorrect
cloned the cuDF repo, executed the notebook using
Restart Kernel and Run All Cells
from theKernel
menu.executing in a 22.04 RAPIDS kernel, built using RAPIDS Release selector tool, with conda and 22.04 (Nightly) on 8th March 2022.
Suggested fix for documentation
to fix 2. above, the
.as_matrix()
in cells 65 and 66 should be replaced by.as_numpy()
The text was updated successfully, but these errors were encountered: