遇到ModuleNotFoundError: No module named 'cudf' 错误时,通常意味着 Python 环境中没有安装 cudf 模块,或者安装后没有被正确识别。以下是一些解决这个问题的步骤: 1. 确认 'cudf' 模块是否已正确安装 首先,你需要确认 cudf 是否已经安装在你的 Python 环境中。可以通过以下命令来检查: bash pip show cudf ...
I installed this library via: anamaria@login-2[SABER]: ~ $ module load Python/3.7.4-GCCcore-8.3.0 anamaria@login-2[SABER]: ~ $ module load CUDA/11.1.1-GCC-10.2.0 anamaria@login-2[SABER]: ~ $ conda install -c rapidsai -c nvidia -c numba -c conda-forge cudf=21.08 python=3.7 ...
It is. cudf is not compatible with pycaret. Since the data is managed on cpu, using cuML creates some overhead when the input and output need to go to/from the GPU. This overhead should be outweighted by the speed of the calculations on GPU for very large datasets. ...