Skip to content

Commit

Permalink
Try inverting the verbosity
Browse files Browse the repository at this point in the history
  • Loading branch information
vyasr committed Dec 21, 2024
1 parent 543e989 commit ae7525d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/cuml/cuml/dask/manifold/umap.py
Original file line number Diff line number Diff line change
Expand Up @@ -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, verbose=0)
>>> local_model = UMAP(random_state=10, verbose=6)
>>> selection = np.random.RandomState(10).choice(1000, 100)
>>> X_train = X[selection]
Expand Down

0 comments on commit ae7525d

Please sign in to comment.