annoy

Approximate Nearest Neighbors in C++/Python optimized for memory usage and loading/saving to disk

https://github.com/spotify/annoy

Science Score: 23.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
  • DOI references
  • Academic publication links
  • Committers with academic emails
    4 of 86 committers (4.7%) from academic institutions
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (15.1%) to scientific vocabulary

Keywords

approximate-nearest-neighbor-search c-plus-plus golang locality-sensitive-hashing lua nearest-neighbor-search python

Keywords from Contributors

hadoop scheduling orchestration-framework luigi distributed data-mining rcpp document-similarity fasttext gensim
Last synced: 6 months ago · JSON representation

Repository

Approximate Nearest Neighbors in C++/Python optimized for memory usage and loading/saving to disk

Basic Info
  • Host: GitHub
  • Owner: spotify
  • License: apache-2.0
  • Language: C++
  • Default Branch: main
  • Size: 1.93 MB
Statistics
  • Stars: 13,925
  • Watchers: 314
  • Forks: 1,206
  • Open Issues: 69
  • Releases: 20
Topics
approximate-nearest-neighbor-search c-plus-plus golang locality-sensitive-hashing lua nearest-neighbor-search python
Created almost 13 years ago · Last pushed over 1 year ago
Metadata Files
Readme License

README.rst

Annoy
-----



.. figure:: https://raw.github.com/spotify/annoy/master/ann.png
   :alt: Annoy example
   :align: center

.. image:: https://github.com/spotify/annoy/actions/workflows/ci.yml/badge.svg
    :target: https://github.com/spotify/annoy/actions

Annoy (`Approximate Nearest Neighbors `__ Oh Yeah) is a C++ library with Python bindings to search for points in space that are close to a given query point. It also creates large read-only file-based data structures that are `mmapped `__ into memory so that many processes may share the same data.

Install
-------

To install, simply do ``pip install --user annoy`` to pull down the latest version from `PyPI `_.

For the C++ version, just clone the repo and ``#include "annoylib.h"``.

Background
----------

There are some other libraries to do nearest neighbor search. Annoy is almost as fast as the fastest libraries, (see below), but there is actually another feature that really sets Annoy apart: it has the ability to **use static files as indexes**. In particular, this means you can **share index across processes**. Annoy also decouples creating indexes from loading them, so you can pass around indexes as files and map them into memory quickly. Another nice thing of Annoy is that it tries to minimize memory footprint so the indexes are quite small.

Why is this useful? If you want to find nearest neighbors and you have many CPU's, you only need to build the index once. You can also pass around and distribute static files to use in production environment, in Hadoop jobs, etc. Any process will be able to load (mmap) the index into memory and will be able to do lookups immediately.

We use it at `Spotify `__ for music recommendations. After running matrix factorization algorithms, every user/item can be represented as a vector in f-dimensional space. This library helps us search for similar users/items. We have many millions of tracks in a high-dimensional space, so memory usage is a prime concern.

Annoy was built by `Erik Bernhardsson `__ in a couple of afternoons during `Hack Week `__.

Summary of features
-------------------

* `Euclidean distance `__, `Manhattan distance `__, `cosine distance `__, `Hamming distance `__, or `Dot (Inner) Product distance `__
* Cosine distance is equivalent to Euclidean distance of normalized vectors = sqrt(2-2*cos(u, v))
* Works better if you don't have too many dimensions (like <100) but seems to perform surprisingly well even up to 1,000 dimensions
* Small memory usage
* Lets you share memory between multiple processes
* Index creation is separate from lookup (in particular you can not add more items once the tree has been created)
* Native Python support, tested with 2.7, 3.6, and 3.7.
* Build index on disk to enable indexing big datasets that won't fit into memory (contributed by `Rene Hollander `__)

Python code example
-------------------

.. code-block:: python

  from annoy import AnnoyIndex
  import random

  f = 40  # Length of item vector that will be indexed

  t = AnnoyIndex(f, 'angular')
  for i in range(1000):
      v = [random.gauss(0, 1) for z in range(f)]
      t.add_item(i, v)

  t.build(10) # 10 trees
  t.save('test.ann')

  # ...

  u = AnnoyIndex(f, 'angular')
  u.load('test.ann') # super fast, will just mmap the file
  print(u.get_nns_by_item(0, 1000)) # will find the 1000 nearest neighbors

Right now it only accepts integers as identifiers for items. Note that it will allocate memory for max(id)+1 items because it assumes your items are numbered 0 … n-1. If you need other id's, you will have to keep track of a map yourself.

Full Python API
---------------

* ``AnnoyIndex(f, metric)`` returns a new index that's read-write and stores vector of ``f`` dimensions. Metric can be ``"angular"``, ``"euclidean"``, ``"manhattan"``, ``"hamming"``, or ``"dot"``.
* ``a.add_item(i, v)`` adds item ``i`` (any nonnegative integer) with vector ``v``. Note that it will allocate memory for ``max(i)+1`` items.
* ``a.build(n_trees, n_jobs=-1)`` builds a forest of ``n_trees`` trees. More trees gives higher precision when querying. After calling ``build``, no more items can be added. ``n_jobs`` specifies the number of threads used to build the trees. ``n_jobs=-1`` uses all available CPU cores.
* ``a.save(fn, prefault=False)`` saves the index to disk and loads it (see next function). After saving, no more items can be added.
* ``a.load(fn, prefault=False)`` loads (mmaps) an index from disk. If `prefault` is set to `True`, it will pre-read the entire file into memory (using mmap with `MAP_POPULATE`). Default is `False`.
* ``a.unload()`` unloads.
* ``a.get_nns_by_item(i, n, search_k=-1, include_distances=False)`` returns the ``n`` closest items. During the query it will inspect up to ``search_k`` nodes which defaults to ``n_trees * n`` if not provided. ``search_k`` gives you a run-time tradeoff between better accuracy and speed. If you set ``include_distances`` to ``True``, it will return a 2 element tuple with two lists in it: the second one containing all corresponding distances.
* ``a.get_nns_by_vector(v, n, search_k=-1, include_distances=False)`` same but query by vector ``v``.
* ``a.get_item_vector(i)`` returns the vector for item ``i`` that was previously added.
* ``a.get_distance(i, j)`` returns the distance between items ``i`` and ``j``. NOTE: this used to return the *squared* distance, but has been changed as of Aug 2016.
* ``a.get_n_items()`` returns the number of items in the index.
* ``a.get_n_trees()`` returns the number of trees in the index.
* ``a.on_disk_build(fn)`` prepares annoy to build the index in the specified file instead of RAM (execute before adding items, no need to save after build)
* ``a.set_seed(seed)`` will initialize the random number generator with the given seed.  Only used for building up the tree, i. e. only necessary to pass this before adding the items.  Will have no effect after calling `a.build(n_trees)` or `a.load(fn)`.

Notes:

* There's no bounds checking performed on the values so be careful.
* Annoy uses Euclidean distance of normalized vectors for its angular distance, which for two vectors u,v is equal to ``sqrt(2(1-cos(u,v)))``


The C++ API is very similar: just ``#include "annoylib.h"`` to get access to it.

Tradeoffs
---------

There are just two main parameters needed to tune Annoy: the number of trees ``n_trees`` and the number of nodes to inspect during searching ``search_k``.

* ``n_trees`` is provided during build time and affects the build time and the index size. A larger value will give more accurate results, but larger indexes.
* ``search_k`` is provided in runtime and affects the search performance. A larger value will give more accurate results, but will take longer time to return.

If ``search_k`` is not provided, it will default to ``n * n_trees`` where ``n`` is the number of approximate nearest neighbors. Otherwise, ``search_k`` and ``n_trees`` are roughly independent, i.e. the value of ``n_trees`` will not affect search time if ``search_k`` is held constant and vice versa. Basically it's recommended to set ``n_trees`` as large as possible given the amount of memory you can afford, and it's recommended to set ``search_k`` as large as possible given the time constraints you have for the queries.

You can also accept slower search times in favour of reduced loading times, memory usage, and disk IO. On supported platforms the index is prefaulted during ``load`` and ``save``, causing the file to be pre-emptively read from disk into memory. If you set ``prefault`` to ``False``, pages of the mmapped index are instead read from disk and cached in memory on-demand, as necessary for a search to complete. This can significantly increase early search times but may be better suited for systems with low memory compared to index size, when few queries are executed against a loaded index, and/or when large areas of the index are unlikely to be relevant to search queries.


How does it work
----------------

Using `random projections `__ and by building up a tree. At every intermediate node in the tree, a random hyperplane is chosen, which divides the space into two subspaces. This hyperplane is chosen by sampling two points from the subset and taking the hyperplane equidistant from them.

We do this k times so that we get a forest of trees. k has to be tuned to your need, by looking at what tradeoff you have between precision and performance.

Hamming distance (contributed by `Martin Aumüller `__) packs the data into 64-bit integers under the hood and uses built-in bit count primitives so it could be quite fast. All splits are axis-aligned.

Dot Product distance (contributed by `Peter Sobot `__ and `Pavel Korobov `__) reduces the provided vectors from dot (or "inner-product") space to a more query-friendly cosine space using `a method by Bachrach et al., at Microsoft Research, published in 2014 `__.



More info
---------

* `Dirk Eddelbuettel `__ provides an `R version of Annoy `__.
* `Andy Sloane `__ provides a `Java version of Annoy `__ although currently limited to cosine and read-only.
* `Pishen Tsai `__ provides a `Scala wrapper of Annoy `__ which uses JNA to call the C++ library of Annoy.
* `Atsushi Tatsuma `__ provides `Ruby bindings for Annoy `__.
* There is `experimental support for Go `__ provided by `Taneli Leppä `__.
* `Boris Nagaev `__ wrote `Lua bindings `__.
* During part of Spotify Hack Week 2016 (and a bit afterward), `Jim Kang `__ wrote `Node bindings `__ for Annoy.
* `Min-Seok Kim `__ built a `Scala version `__ of Annoy.
* `hanabi1224 `__ built a read-only `Rust version `__ of Annoy, together with **dotnet, jvm and dart** read-only bindings.
* `Presentation from New York Machine Learning meetup `__ about Annoy
* Annoy is available as a `conda package `__ on Linux, OS X, and Windows.
* `ann-benchmarks `__ is a benchmark for several approximate nearest neighbor libraries. Annoy seems to be fairly competitive, especially at higher precisions:

.. figure:: https://github.com/erikbern/ann-benchmarks/raw/master/results/glove-100-angular.png
   :alt: ANN benchmarks
   :align: center
   :target: https://github.com/erikbern/ann-benchmarks

Source code
-----------

It's all written in C++ with a handful of ugly optimizations for performance and memory usage. You have been warned :)

The code should support Windows, thanks to `Qiang Kou `__ and `Timothy Riley `__.

To run the tests, execute `python setup.py nosetests`. The test suite includes a big real world dataset that is downloaded from the internet, so it will take a few minutes to execute.

Discuss
-------

Feel free to post any questions or comments to the `annoy-user `__ group. I'm `@fulhack `__ on Twitter.

Owner

  • Name: Spotify
  • Login: spotify
  • Kind: organization
  • Email: opensource@spotify.com
  • Location: Stockholm, Sweden

GitHub Events

Total
  • Issues event: 10
  • Watch event: 716
  • Issue comment event: 25
  • Pull request review comment event: 5
  • Pull request review event: 4
  • Pull request event: 4
  • Fork event: 44
Last Year
  • Issues event: 10
  • Watch event: 716
  • Issue comment event: 25
  • Pull request review comment event: 5
  • Pull request review event: 4
  • Pull request event: 4
  • Fork event: 44

Committers

Last synced: 9 months ago

All Time
  • Total Commits: 649
  • Total Committers: 86
  • Avg Commits per committer: 7.547
  • Development Distribution Score (DDS): 0.706
Past Year
  • Commits: 3
  • Committers: 1
  • Avg Commits per committer: 3.0
  • Development Distribution Score (DDS): 0.0
Top Committers
Name Email Commits
Erik Bernhardsson m****l@e****m 191
Erik Bernhardsson e****n@s****m 157
Dirk Eddelbuettel e****d@d****g 27
Christopher Dignam c****s@d****z 24
Erik Bernhardsson e****n@b****m 21
Rok Novosel n****k@g****m 14
Rene Hollander m****l@r****t 14
tjrileywisc t****y@g****m 12
LTLA i****s@g****m 12
Berker Peksag b****g@g****m 12
Boris Nagaev b****v@g****m 11
pkorobov p****v@g****m 9
Peter Sobot p****t@s****m 8
Maxim Bulatov d****t@g****m 6
Romain Yon r****n@s****m 6
Martin Aumüller m****u@i****k 6
Mario Klingemann m****o@q****m 5
rbares r****s 5
Andy Sloane as@s****m 4
Erik Bernhardsson e****k@m****g 4
Karl Higley k****y@g****m 4
Taneli Leppä r****o@r****i 3
Tom Forbes t****m@t****s 3
NegatioN j****g@g****m 3
Natan de Almeida Laverde n****e@g****m 3
Keith McNeill k****m@s****m 3
Johan Rade j****e@g****m 3
AlisaLC a****1@y****m 3
Aaron Lun a****n@c****k 3
Linh Tran l****t@n****m 3
and 56 more...

Issues and Pull Requests

Last synced: 6 months ago

All Time
  • Total issues: 104
  • Total pull requests: 40
  • Average time to close issues: 3 months
  • Average time to close pull requests: 22 days
  • Total issue authors: 95
  • Total pull request authors: 29
  • Average comments per issue: 2.91
  • Average comments per pull request: 2.93
  • Merged pull requests: 24
  • Bot issues: 0
  • Bot pull requests: 0
Past Year
  • Issues: 9
  • Pull requests: 5
  • Average time to close issues: 39 minutes
  • Average time to close pull requests: N/A
  • Issue authors: 9
  • Pull request authors: 4
  • Average comments per issue: 0.67
  • Average comments per pull request: 1.6
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Top Authors
Issue Authors
  • wuwuzhijing (3)
  • Zhaojun-Liu (2)
  • yurivict (2)
  • jianshu93 (2)
  • ganguagua (2)
  • MartinPedersenpp (2)
  • oun (2)
  • TylerRankin (2)
  • ahmedgit-hub (1)
  • sunkadshreyas (1)
  • FuexFollets (1)
  • semskurto (1)
  • Xunius (1)
  • rvigneshw (1)
  • shiranD (1)
Pull Request Authors
  • erikbern (6)
  • patcon (2)
  • sujithchilumula (2)
  • LTLA (2)
  • AlisaLC (2)
  • eddelbuettel (2)
  • LongbinChen (1)
  • AntonOsika (1)
  • tirkarthi (1)
  • anukaal (1)
  • shaymolcho (1)
  • jrade (1)
  • moritz-h (1)
  • eltociear (1)
  • MeggyCal (1)
Top Labels
Issue Labels
Pull Request Labels

Packages

  • Total packages: 8
  • Total downloads:
    • pypi 904,444 last-month
  • Total docker downloads: 21,454
  • Total dependent packages: 69
    (may contain duplicates)
  • Total dependent repositories: 582
    (may contain duplicates)
  • Total versions: 102
  • Total maintainers: 6
pypi.org: annoy

Approximate Nearest Neighbors in C++/Python optimized for memory usage and loading/saving to disk.

  • Versions: 45
  • Dependent Packages: 68
  • Dependent Repositories: 572
  • Downloads: 903,649 Last month
  • Docker Downloads: 21,454
Rankings
Stargazers count: 0.2%
Dependent packages count: 0.3%
Downloads: 0.4%
Dependent repos count: 0.6%
Average: 0.7%
Forks count: 1.2%
Docker downloads count: 1.3%
Maintainers (1)
Last synced: 6 months ago
proxy.golang.org: github.com/spotify/annoy
  • Versions: 22
  • Dependent Packages: 0
  • Dependent Repositories: 1
Rankings
Stargazers count: 0.6%
Forks count: 0.8%
Average: 3.9%
Dependent repos count: 4.7%
Dependent packages count: 9.6%
Last synced: 6 months ago
pypi.org: annoy_fixed

fixed annoy bugs personer

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 1
  • Downloads: 84 Last month
Rankings
Stargazers count: 0.2%
Forks count: 1.2%
Dependent packages count: 10.0%
Average: 10.0%
Downloads: 17.1%
Dependent repos count: 21.7%
Maintainers (1)
Last synced: 6 months ago
conda-forge.org: python-annoy
  • Versions: 20
  • Dependent Packages: 1
  • Dependent Repositories: 7
Rankings
Stargazers count: 2.7%
Forks count: 4.6%
Average: 12.3%
Dependent repos count: 12.9%
Dependent packages count: 29.0%
Last synced: 6 months ago
pypi.org: annoy-dm

Approximate Nearest Neighbors in C++/Python optimized for memory usage and loading/saving to disk. DM compatible

  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 1
  • Downloads: 36 Last month
Rankings
Stargazers count: 0.2%
Forks count: 1.2%
Dependent packages count: 10.0%
Average: 13.2%
Dependent repos count: 21.7%
Downloads: 32.8%
Maintainers (1)
Last synced: 6 months ago
spack.io: py-annoy

Annoy (Approximate Nearest Neighbors Oh Yeah) is a C++ library with Python bindings to search for points in space that are close to a given query point. It also creates large read-only file-based data structures that are mmapped into memory so that many processes may share the same data.

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Stargazers count: 0.9%
Forks count: 2.7%
Average: 15.2%
Dependent packages count: 57.3%
Maintainers (1)
Last synced: about 1 year ago
pypi.org: annoy-mm

Approximate Nearest Neighbors in C++/Python optimized for memory usage and loading/saving to disk.

  • Versions: 10
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 627 Last month
Rankings
Dependent packages count: 9.0%
Average: 29.8%
Dependent repos count: 50.6%
Maintainers (1)
Last synced: 6 months ago
pypi.org: annoy-binary

Approximate Nearest Neighbors in C++/Python optimized for memory usage and loading/saving to disk. Prebuilt binary

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 48 Last month
Rankings
Dependent packages count: 9.8%
Average: 32.5%
Dependent repos count: 55.2%
Maintainers (1)
Last synced: 6 months ago

Dependencies

.github/workflows/ci.yml actions
  • actions/checkout v3 composite
  • actions/setup-python v4 composite
setup.py pypi