Skip to content
/ hnswlib Public
forked from jelmerk/hnswlib

Java library for approximate nearest neighbors search using Hierarchical Navigable Small World graphs

Notifications You must be signed in to change notification settings

uday60/hnswlib

 
 

Repository files navigation

Build Status

Hnswlib

Work in progress java implementation of the the Hierarchical Navigable Small World graphs (HNSW) algorithm for doing approximate nearest neighbour search.

The index is thread safe, serializable, supports adding items to the index incrementally and has experimental support for deletes.

It's flexible interface makes it easy to apply it to use it with any type of data and distance metric.

The following distance metrics are currently pre-packaged :

  • bray curtis dissimilarity
  • canberra distance
  • correlation distance
  • cosine distance
  • euclidean distance
  • inner product
  • manhattan distance

It comes with spark integration, pyspark integration and a scala wrapper that should feel native to scala developers

To find out more about how to use this library take a look at the hnswlib-examples module or browse the documentation in the readme files of the submodules

About

Java library for approximate nearest neighbors search using Hierarchical Navigable Small World graphs

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 61.2%
  • Scala 34.5%
  • Python 4.3%