21 releases (10 breaking)

0.11.0 Jul 19, 2021
0.9.1 Jul 11, 2021
0.6.1 Apr 4, 2020
0.6.0 Mar 6, 2020
0.3.1 Sep 6, 2019

#1673 in Algorithms

Download history 106/week @ 2023-11-26 140/week @ 2023-12-03 219/week @ 2023-12-10 133/week @ 2023-12-17 164/week @ 2023-12-24 132/week @ 2023-12-31 106/week @ 2024-01-07 95/week @ 2024-01-14 201/week @ 2024-01-21 215/week @ 2024-01-28 197/week @ 2024-02-04 11/week @ 2024-02-11 34/week @ 2024-02-18 87/week @ 2024-02-25 25/week @ 2024-03-03 14/week @ 2024-03-10

161 downloads per month
Used in 3 crates

MIT license

37KB
606 lines

hnsw

Discord Crates.io MIT/Apache docs.rs LoC

Hierarchical Navigable Small World Graph for fast ANN search

Enable the serde feature to serialize and deserialize HNSW.

Tips

A good default for M and M0 parameters is 12 and 24 respectively. According to the paper, M0 should always be double M, but you can change both of them freely.

Example

To see how this might be used with hamming space, see tests/simple_discrete.rs. To see how this might be used with euclidean space, see tests/simple.rs.

Note that the euclidean implementation in the test may have some numerical errors and fail to implement the triangle inequality, especially on high dimensionality. Use a Kahan sum instead for proper usage. It also may not utilize SIMD, but using an array may help with that.

Please refer to the space documentation for the trait and types regarding distance. It also contains special Bits128 - Bits4096 tuple structs that wrap an array of bytes and enable SIMD capability. Benchmarks provided use these SIMD impls.

Benchmarks

Here is a recall graph that you can compare to its alternatives:

Recall Graph

For more benchmarks and how to benchmark, see benchmarks.md.

Implementation

This is based on the paper "Efficient and robust approximate nearest neighbor search using Hierarchical Navigable Small World graphs" by Yu. A. Malkov and D. A. Yashunin. This paper builds on the original paper for NSW. There are multiple papers written by the authors on NSW, which preceeded HNSW.

For more details about parameters and details of the implementation, see implementation.md.

Credit

This is in no way a direct copy or reimplementation of the original implementation. This was made purely based on the paper without reference to the original headers. The paper is very well written and easy to understand, with some minor exceptions. Thank you to the authors for your valuble contribution.

Questions? Contributions? Excited?

Please visit the Rust CV Discord.

Dependencies

~2MB
~34K SLoC