-
-
Notifications
You must be signed in to change notification settings - Fork 25
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
PipeOpUMAP #791
base: master
Are you sure you want to change the base?
PipeOpUMAP #791
Conversation
… umap_transform by default
Noting for future reference, that R CMD check failed since |
Apparently there was a bug in |
A couple of parameters (
Obviously, There are other cases that can't be tested for using |
search_k_transform = p_int(default = NULL, special_vals = list(NULL), tags = c("predict", "overwrite"), depends = quote(nn_method == "annoy")), | ||
n_epochs_transform = p_int(lower = 1L, default = NULL, special_vals = list(NULL), tags = c("predict", "overwrite")), | ||
init_transform = p_fct(levels = c("weighted", "average"), special_vals = list("custom"), default = "weighted", tags = c("predict", "overwrite")), | ||
init_transform_custom = p_uty(custom_check = check_matrix, tags = "predict", depends = quote(init_transform == "custom")), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this one has no tag 'overwrite' on purpose?
This implements Uniform Manifold Approximation and Projection (UMAP) from the uwot package.
Training works via
uwot::umap2()
and prediction throughuwot::umap_transform()
.closes #755