Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upReturn 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