Git Product home page Git Product logo

Comments (5)

a1k0n avatar a1k0n commented on May 18, 2024

Huh, that's true. A tree is a Voronoi diagram then, effectively. So you could use Hamming distance too.... which I actually have a use for, right now. Neat!

from annoy.

a1k0n avatar a1k0n commented on May 18, 2024

And actually, then you don't have to store the split planes at all, only pointers to the left/right tree nodes. Which again breaks your fixed tree node size constraint unless leaves are tiny, but if you had dynamic leaf node sizes then the whole tree would be a lot smaller.

If you do that then it would also make sense to reorder the indices so that the roots and interior tree nodes are first, etc, for memory locality purposes.

Another idea I had was to just store the points in the interior nodes and not in the leaves, and push them onto the priority queue while traversing the tree. But that doesn't really help when you have multiple trees and the same points which are interior in one tree end up in a leaf of another tree.

from annoy.

erikbern avatar erikbern commented on May 18, 2024

But Hamming distance is pretty much the same as Euclidean unless you are
saying some leaves could have many items?

Btw did you see https://github.com/houzz/annoy2 ? Will be interesting to
see if the LMDB backend works out - then you don't have to worry about the
fixed size stuff

On Friday, September 11, 2015, Andy Sloane [email protected] wrote:

And actually, then you don't have to store the split planes at all, only
pointers to the left/right tree nodes. Which again breaks your fixed tree
node size constraint unless leaves are tiny, but if you had dynamic leaf
node sizes then the whole tree would be a lot smaller.

If you do that then it would also make sense to reorder the indices so
that the roots and interior tree nodes are first, etc, for memory locality
purposes.

Another idea I had was to just store the points in the interior nodes and
not in the leaves, and push them onto the priority queue while traversing
the tree. But that doesn't really help when you have multiple trees and the
same points which are interior in one tree end up in a leaf of another tree.


Reply to this email directly or view it on GitHub
#102 (comment).

from annoy.

a1k0n avatar a1k0n commented on May 18, 2024

Oh yeah, I hadn't considered hamming as a special case of euclidean. Still, it would be much more compactly represented as bits rather than 0/0.5/1 floats :)

I did see that, yeah. That could enable all kinds of neat stuff.

from annoy.

erikbern avatar erikbern commented on May 18, 2024

You could implement hamming distance by just having T=int64 and add up the bit distance btw

ANyway, closing this...

from annoy.

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.