无法在 Kaggle 笔记本环境中导入"cuxfilter"包



我正在使用一个>5GB CSV文件用于Kaggle的竞争。我正在使用cudf和cuml进行数据预处理和机器学习。但对于可视化,我的计划是使用Plotly使用GPU加速的可视化。由于Kaggle docker还没有包括Rapids,我正在使用以下数据集来安装它。
https://www.kaggle.com/cdeotte/rapids
但我无法导入";cuxfilter";即使在使用上述数据集安装了rapids之后,Kaggle笔记本中的软件包也不例外

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

RAPID 0.15版本不支持CUDA10.0。请更新您的CUDA软件包或使用RAPID 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

最新更新