0

我正在使用大于 5GB 的 CSV 文件来参加 Kaggle 比赛。我正在使用 cudf 和 cuml 进行数据预处理和机器学习。但对于可视化,我的计划是使用 Plotly 使用 GPU 加速可视化。由于 Kaggle docker 还没有包含 Rapids,我使用下面的 Dataset 来安装它。
https://www.kaggle.com/cdeotte/rapids
但即使在使用上述数据集安装rapids 后,我也无法在Kaggle 笔记本中导入“cuxfilter”包。

import cuxfilter

正在给出 ModuleNotFoundError

有没有办法在 Kaggle 中安装这个包?

我也尝试使用 conda 安装该软件包,但没有成功。使用的命令如下

conda install -c rapidsai -c nvidia -c conda-forge -c defaults cuxfilter=0.15 python=3.7 cudatoolkit=10.0

另请在 kaggle 论坛中找到我的帖子以获取更多详细信息 https://www.kaggle.com/cdeotte/rapids/discussion/190432#1046557

4

1 回答 1

2

RAPIDS 0.15 版本不支持 CUDA10.0。请更新您的 CUDA 包或使用 RAPIDS 0.14 版本

使用 conda 安装 cuxfilter 0.14 的命令:

conda install -c rapidsai -c nvidia -c conda-forge -c defaults cuxfilter=0.14 python=3.7 cudatoolkit=10.0
于 2020-10-15T16:57:13.253 回答