GithubHelp home page GithubHelp logo

Comments (3)

Chengwei94 avatar Chengwei94 commented on May 28, 2024

Looks like I can get it the connectivity matrix through umap(mnist, ret_extra = c("fgraph"))

from uwot.

jlmelville avatar jlmelville commented on May 28, 2024

You are correct that that the output of similarity_graph is the same as running umap with ret_extra = c("fgraph").

But the use case of calling similarity_graph and then passing it to umap and skipping all the computation is not something you can do at the moment. A workaround would be to use the k-nearest neighbors output:

sg_res <- similarity_graph(iris, ret_extra = "nn")
umap_res <- umap(X = NULL, nn_method = sg_res$nn)

This incurs the cost of similarity calculation and symmetrization, but that is quick compared to the nearest neighbor calculation itself.

Passing the result of similarity_graph back into umap seems like something that ought to be supported now that similarity_graph exists, especially as it would allow users to use either a modified version of the fuzzy simplicial set or even a sparse similarity matrix created via an entirely different method outside of uwot and then uwot can just be used to optimize the approximate coordinates in the lower dimension. So @Chengwei94 if you don't mind I would like to leave this issue open to remind me to support this in the next version of uwot.

This is not hard to implement, but the interface requires some thought: some questions to myself (or anyone with an interest in this): how should the user pass this to umap? The X parameter already assumes if its passed a sparse matrix that it's a distance matrix. X in combination with a is_similarity_graph parameter? Use nn_method instead? An entirely new parameter (and with it the need for ever more complex validation of which parameters are allowed together and which ones get ignored if they are both set)? An entirely new function (probably safest). While we're here, should the type of symmetrization also be specified by the user (e.g. fuzzy set union for UMAP vs mean average in LargeVis)?

from uwot.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.