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
If I give a bad path/filename when trying to read_json w/ lines=True, I get a confusing error, which might send me down a path debugging the JSON format instead of realizing I was giving a bad path:
RuntimeError: CUDF failure at: /opt/conda/conda-bld/work/cpp/src/io/json/json_column.cu:967: Input needs to be an array of arrays or an array of (nested) objects
For example, read_csv handles this nicely:
cudf.read_csv("non_existent_file.csv")
FileNotFoundError: non_existent_file.csv could not be resolved to any files
The text was updated successfully, but these errors were encountered:
If I give a bad path/filename when trying to read_json w/ lines=True, I get a confusing error, which might send me down a path debugging the JSON format instead of realizing I was giving a bad path:
Trace:
For example, read_csv handles this nicely:
The text was updated successfully, but these errors were encountered: