-
Notifications
You must be signed in to change notification settings - Fork 31
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
Return UMAP graph? #47
Comments
Hello, right now the fuzzy simplicial set is not available for output. But it could be added as a new option in the next release. |
OK, thanks! I think this would be a great feature for the next release :) |
@twhiscock the github version of uwot now has the option to return the fuzzy simplicial set by using: res <- umap(X, ret_extra = c("fgraph")) The coordinates will be in This will show up in the next CRAN version, whenever that is. Note that the graph is further sparsified by dropping low-weight edges that would not be sampled during optimization. That is determined by the The effect of the sparsifying is small with default values. I looked at |
Awesome :) |
uwot 0.1.8 is on CRAN with this feature available. |
Hello! Thank you for writing such a useful package. It is great not to have to switch between python and R to use umap :).
I was wondering: is it possible to output the graph (i.e. the fuzzy simplicial set) that is an intermediate step in the UMAP projection?
In the original python implementation, I obtained this using the function:
umap.umap_.fuzzy_simplicial_set
I have found that this graph has several nice properties, and can be used to cluster data directly using graphical clustering methods.
Tom
The text was updated successfully, but these errors were encountered: