Giter VIP home page Giter VIP logo

Comments (4)

OuNao avatar OuNao commented on May 21, 2024 1

I will try these to find the best values for my data.

Thank you.

from uwot.

jlmelville avatar jlmelville commented on May 21, 2024

Unfortunately, FNN doesn't provide a data structure that can be used to query new data. For small datasets, you can force the use of Annoy with nn_method = "annoy".

from uwot.

OuNao avatar OuNao commented on May 21, 2024

Ok.
I will do this.

Another question: are there any option to pass do annoy to search for exact NN?

Thanks again.

from uwot.

jlmelville avatar jlmelville commented on May 21, 2024

No, your only option is to set search_k and n_trees to larger values.

There are some private functions in uwot, uwot:::FNN_nn (which uses FNN) and uwot:::annoy_nn (which uses Annoy), that you could use to benchmark the Annoy settings. They will return a list containing a matrix of neighbor indices and distances. The input to both these functions already needs to be a matrix, not a dataframe (another private function, uwot:::x2m can help with that if needed).

mat <- uwot:::x2m(df)
true_nn <- uwot:::FNN_nn(mat, k = 15)
approx_nn <- uwot:::annoy_nn(mat, k = 15, n_trees = 100)
# compare contents of approx_nn$idx with true_nn$idx

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.