First of all, I am fairly new to running models on GPU, so sorry in advance for stupid questions.
I use RAPIDS cuML to GPU-accelerate some algorithms, but I noticed I cannot use the latest version (23.2.0) in a Kaggle notebook. When importing cuML, version 21.12.0 is installed, which is the wrong version. I don't know how to make it work or whether the latest version simply is not supported.
Could anyone help me with this? Is there another reason it does install the latest version? Thanks in advance!
(I need it because the older version does not let me define a metric for its UMAP algorithm from cuml.manifold)
I first tried to run this: !pip install cuml-cu11 --extra-index-url=https://pypi.nvidia.com
which gave me version 21.12.0
Then I tried this: !pip install cuml-cu11==23.2.0 --extra-index-url=https://pypi.nvidia.com
which did not work.