Is there any function, that convert Dask-cudf dataframe to Cudf dataframe?Like from_cudf for cudf to dask-cudf. dgdf = dask_cudf.from_cudf(df, npartitions=2)
Asked
Active
Viewed 437 times
1 Answers
1
Running .compute()
method on a dask_cudf.DataFrame
will convert it to a cudf.DataFrame
:
df_cudf = df_dask_cudf.compute()

SultanOrazbayev
- 14,900
- 3
- 16
- 46