Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/source/cuml-accel/limitations.rst
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ A few additional general notes:
or categorical formats (e.g., using scikit-learn's LabelEncoder) prior to
processing.

- The accelerator is compatible with scikit-learn version 1.5 or higher. This
- The accelerator is compatible with scikit-learn version 1.4 or higher. This
compatibility ensures that cuML's implementation of scikit-learn compatible
APIs works as expected.

Expand Down
34 changes: 34 additions & 0 deletions docs/source/supported_versions.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
Supported Versions
==================

Please see https://docs.rapids.ai/install/ for RAPIDS-wide version support.

We aim to meet the `SPEC 0 guidelines <https://scientific-python.org/specs/spec-0000/>`_ for minimal supported versions.

Required Runtime Dependencies
---------------------------
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
---------------------------
-----------------------------


The following dependencies are required for the cuML library:

* **NumPy**: >=1.23,<3.0a0
* **scikit-learn**: >=1.4
* **scipy**: >=1.8.0
* **numba**: >=0.59.1,<0.62.0a0
* **cupy**: cupy-cuda12x>=12.0.0
* **treelite**: ==4.4.1


Optional Runtime Dependencies
---------------------------
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
---------------------------
-----------------------------


The following dependencies are optional and provide additional functionality:

* **xgboost**: >=2.1.0 (for gradient boosting algorithms)
* **hdbscan**: >=0.8.39,<0.8.40 (for hierarchical density-based clustering)
* **umap-learn**: ==0.5.7 (for dimensionality reduction)
* **pynndescent**: (for approximate nearest neighbor search)

RAPIDS Dependencies
------------------
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
------------------
-------------------


cuML dependencies within the RAPIDS ecosystem are pinned to the same version. For example, cuML 25.08 is compatible with and only with cuDF 25.08, cuVS 25.08, and other RAPIDS libraries at version 25.08.
1 change: 1 addition & 0 deletions docs/source/user_guide.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ User Guide

estimator_intro.ipynb
pickling_cuml_models.ipynb
supported_versions.rst
Loading