如何安装 cuML 模块?

How install cuML module?

我在我的 jupyter notebook 中启动了这个命令

pip install cuml

我有这个错误:

ERROR: Could not find a version that satisfies the requirement cuml (from versions: none) ERROR: No matching distribution found for cuml

请问如何解决(我在windows)?

抱歉,cuml 目前不支持 windows OS。但您可以在云端免费试用。

Kaggle 内核:https://www.kaggle.com/cdeotte/rapids-gpu-knn-mnist-0-97

Colab:https://colab.research.google.com/drive/1rY7Ln6rEE1pOlfSHCYOVaqt8OvDO35J0#forceEdit=true&offline=true&sandboxMode=true

让我知道这是否适合您。感谢您对 cuml 感兴趣!

您也可以使用 docker 命令拉取已安装 RAPIDS 库套件的镜像。

示例:

docker pull rapidsai/rapidsai:cuda10.0-runtime-ubuntu16.04

docker run --runtime nvidia --rm -it -p 8888:8888 -p 8787:8787 -p 8786:8786 \
    rapidsai/rapidsai:cuda10.0-runtime-ubuntu16.04

更多详情:https://rapids.ai/start.html