Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MNT Removes unused optim_batch_size from UMAP's docstring #4732

Merged
Merged
Changes from all 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
6 changes: 0 additions & 6 deletions python/cuml/manifold/umap.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,6 @@ cdef extern from "cuml/manifold/umapparams.h" namespace "ML":
float target_weight,
uint64_t random_state,
bool deterministic,
int optim_batch_size,
GraphBasedDimRedCallback * callback


Expand Down Expand Up @@ -270,11 +269,6 @@ class UMAP(Base,
consistency of trained embeddings, allowing for reproducible results
to 3 digits of precision, but will do so at the expense of potentially
slower training and increased memory usage.
optim_batch_size: int (optional, default 100000 / n_components)
Used to maintain the consistency of embeddings for large datasets.
The optimization step will be processed with at most optim_batch_size
edges at once preventing inconsistencies. A lower batch size will yield
more consistently repeatable embeddings at the cost of speed.
callback: An instance of GraphBasedDimRedCallback class
Used to intercept the internal state of embeddings while they are being
trained. Example of callback usage:
Expand Down