Skip to content

Commit

Permalink
Updating docs, readme, and umap param tests for 0.19 (#3731)
Browse files Browse the repository at this point in the history
Authors:
  - Corey J. Nolet (https://github.com/cjnolet)

Approvers:
  - John Zedlewski (https://github.com/JohnZed)

URL: #3731
  • Loading branch information
cjnolet authored Apr 8, 2021
1 parent 1838ff2 commit 0fe729d
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ repo](https://github.com/rapidsai/notebooks-contrib).
| --- | --- | --- |
| **Clustering** | Density-Based Spatial Clustering of Applications with Noise (DBSCAN) | Multi-node multi-GPU via Dask |
| | K-Means | Multi-node multi-GPU via Dask |
| | Single-Linkage Agglomerative Clustering | |
| **Dimensionality Reduction** | Principal Components Analysis (PCA) | Multi-node multi-GPU via Dask|
| | Incremental PCA | |
| | Truncated Singular Value Decomposition (tSVD) | Multi-node multi-GPU via Dask |
Expand All @@ -110,8 +111,10 @@ repo](https://github.com/rapidsai/notebooks-contrib).
| **Preprocessing** | Standardization, or mean removal and variance scaling / Normalization / Encoding categorical features / Discretization / Imputation of missing values / Polynomial features generation / and coming soon custom transformers and non-linear transformation | Based on Scikit-Learn preprocessing
| **Time Series** | Holt-Winters Exponential Smoothing | |
| | Auto-regressive Integrated Moving Average (ARIMA) | Supports seasonality (SARIMA) |
| **Model Explanation** | SHAP Kernel Explainer | [Based on SHAP](https://shap.readthedocs.io/en/latest/) (experimental) |
| | SHAP Permutation Explainer | [Based on SHAP](https://shap.readthedocs.io/en/latest/) (experimental) |
| **Model Explanation** | SHAP Kernel Explainer
| [Based on SHAP](https://shap.readthedocs.io/en/latest/) |
| | SHAP Permutation Explainer
| [Based on SHAP](https://shap.readthedocs.io/en/latest/) |
| **Other** | K-Nearest Neighbors (KNN) Search | Multi-node multi-GPU via Dask+[UCX](https://github.com/rapidsai/ucx-py), uses [Faiss](https://github.com/facebookresearch/faiss) for Nearest Neighbors Query. |

---
Expand Down
4 changes: 2 additions & 2 deletions cpp/test/sg/umap_parametrizable_test.cu
Original file line number Diff line number Diff line change
Expand Up @@ -309,9 +309,9 @@ class UMAPParametrizableTest : public ::testing::Test {
umap_params_vec[3].n_components = 25;
umap_params_vec[3].random_state = 43;
#if CUDART_VERSION < 110200
umap_params_vec[2].init = 1;
umap_params_vec[3].init = 1;
#else
umap_params_vec[2].init = 0;
umap_params_vec[3].init = 0;
#endif
umap_params_vec[3].multicore_implem = false;
umap_params_vec[3].optim_batch_size = 0; // use default value
Expand Down
6 changes: 6 additions & 0 deletions docs/source/api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -333,6 +333,12 @@ DBSCAN
.. autoclass:: cuml.DBSCAN
:members:

Agglomerative Clustering
------------------------

.. autoclass:: cuml.AgglomerativeClustering
:members:

Dimensionality Reduction and Manifold Learning
==============================================

Expand Down

0 comments on commit 0fe729d

Please sign in to comment.