From 543e9895e85c0dd2e87848e83af526e829088e5b Mon Sep 17 00:00:00 2001 From: Vyas Ramasubramani Date: Fri, 20 Dec 2024 21:47:04 +0000 Subject: [PATCH] Manually disable logging for now --- python/cuml/cuml/dask/manifold/umap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/cuml/cuml/dask/manifold/umap.py b/python/cuml/cuml/dask/manifold/umap.py index 181bfb0728..9a27b52d30 100644 --- a/python/cuml/cuml/dask/manifold/umap.py +++ b/python/cuml/cuml/dask/manifold/umap.py @@ -44,7 +44,7 @@ class UMAP(BaseEstimator, DelayedTransformMixin): >>> X, y = make_blobs(1000, 10, centers=42, cluster_std=0.1, ... dtype=np.float32, random_state=10) - >>> local_model = UMAP(random_state=10) + >>> local_model = UMAP(random_state=10, verbose=0) >>> selection = np.random.RandomState(10).choice(1000, 100) >>> X_train = X[selection]