Adding to_array() to cudf.Series to avoid the following error:
TypeError: Implicit conversion to a host NumPy array via __array__ is not allowed,
To explicitly construct a GPU array, consider using cupy.asarray(...)
To explicitly construct a host array, consider using .to_array()
Adding
to_array()
to cudf.Series to avoid the following error: