Skip to main content

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

Project description

https://img.shields.io/github/stars/spotify/annoy.svg

Annoy

Annoy example
https://github.com/spotify/annoy/actions/workflows/ci.yml/badge.svg

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

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

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.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

annoy_mm-1.17.3rc0-cp313-cp313-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

annoy_mm-1.17.3rc0-cp313-cp313-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

annoy_mm-1.17.3rc0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (582.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

annoy_mm-1.17.3rc0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (548.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

annoy_mm-1.17.3rc0-cp312-cp312-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

annoy_mm-1.17.3rc0-cp312-cp312-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

annoy_mm-1.17.3rc0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (582.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

annoy_mm-1.17.3rc0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (549.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

annoy_mm-1.17.3rc0-cp311-cp311-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

annoy_mm-1.17.3rc0-cp311-cp311-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

annoy_mm-1.17.3rc0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (583.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

annoy_mm-1.17.3rc0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (550.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

annoy_mm-1.17.3rc0-cp310-cp310-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

annoy_mm-1.17.3rc0-cp310-cp310-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

annoy_mm-1.17.3rc0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (582.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

annoy_mm-1.17.3rc0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (549.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

annoy_mm-1.17.3rc0-cp39-cp39-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

annoy_mm-1.17.3rc0-cp39-cp39-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

annoy_mm-1.17.3rc0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (582.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

annoy_mm-1.17.3rc0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (548.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

annoy_mm-1.17.3rc0-cp38-cp38-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

annoy_mm-1.17.3rc0-cp38-cp38-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

annoy_mm-1.17.3rc0-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (582.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

annoy_mm-1.17.3rc0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (548.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

File details

Details for the file annoy_mm-1.17.3rc0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for annoy_mm-1.17.3rc0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 59d8d28571f227342e2773c96f730803f84dfcae9d0fde84d997564b01fa3c42
MD5 0e7535fb4664ca61b12ce2d65d9e71c3
BLAKE2b-256 14878c98668a6a86b34eff372a9b411b5ae1761317f1febf8c2be46f2110eec8

See more details on using hashes here.

Provenance

The following attestation bundles were made for annoy_mm-1.17.3rc0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on mathematicalmichael/annoy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file annoy_mm-1.17.3rc0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for annoy_mm-1.17.3rc0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b5ca2d295459ac117ccaf0ce0206769536da7ae13a8322cc6d20139b33ce215d
MD5 6426243fce877cd10a9d492ee7331920
BLAKE2b-256 16017aa6d1a057f804de87cc8e12bcd21f808f7b166cd2aa07ca942385d73ecc

See more details on using hashes here.

Provenance

The following attestation bundles were made for annoy_mm-1.17.3rc0-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: publish.yml on mathematicalmichael/annoy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file annoy_mm-1.17.3rc0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for annoy_mm-1.17.3rc0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c9cbd892bb9f90b55c035b1f0cc7be7e89877d13a3eafda27ca850afcce39f59
MD5 b2e9f050d074990cc67c6b7aa302da4f
BLAKE2b-256 8c3c46da3028cf71000e8cc15805411026c348d92670654267c32a954f2d9199

See more details on using hashes here.

Provenance

The following attestation bundles were made for annoy_mm-1.17.3rc0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on mathematicalmichael/annoy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file annoy_mm-1.17.3rc0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for annoy_mm-1.17.3rc0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 074aef844a48272dfe1d3155be98e82dd03afae71792f85d0864a9e065706bcc
MD5 fc2194611b0e1aaf64c839873c9cc71d
BLAKE2b-256 0440a15ba7fc6aec0f2e6b4d11244695f859b6cd8816a0f32a240a9f3e0a71d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for annoy_mm-1.17.3rc0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: publish.yml on mathematicalmichael/annoy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file annoy_mm-1.17.3rc0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for annoy_mm-1.17.3rc0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 22f287b9073b18e04e15c4bf4f23c65559d26c34d8a24d421c6c4031f12b8520
MD5 ec7df25be34340040aad24335baed759
BLAKE2b-256 6c7fff12e4473377bffb8232f81c2eb1f89590a73091bd84e55544a4a5c2c289

See more details on using hashes here.

Provenance

The following attestation bundles were made for annoy_mm-1.17.3rc0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on mathematicalmichael/annoy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file annoy_mm-1.17.3rc0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for annoy_mm-1.17.3rc0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 49202b5132da0ac35c3c3cf528e3f7bcba0efc79dc3098ebc9264c4df0d8e6c9
MD5 e90b7cd3a504563d1115fad439829928
BLAKE2b-256 1103f2fcd97446d56f450b30aa37ec7e83ca456debc79327feb93c36267e4b7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for annoy_mm-1.17.3rc0-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: publish.yml on mathematicalmichael/annoy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file annoy_mm-1.17.3rc0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for annoy_mm-1.17.3rc0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 172dfcd4896cfcbcedced49cba48321b3d6367036bf656638a7725dfaa51def7
MD5 2bd1e066c8d6bd8eb3c6cc74d21bcc31
BLAKE2b-256 c1ae7e91ddb8d490972d6d98a48af7b20c644c4ba0ec2dbd82477f5a1bbc32c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for annoy_mm-1.17.3rc0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on mathematicalmichael/annoy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file annoy_mm-1.17.3rc0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for annoy_mm-1.17.3rc0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 97797ae9d95ff2348b1e68a327439eb0661656ca80431999357306edd632533b
MD5 8d90ffaa9a44bde36c7e212eaf5ee319
BLAKE2b-256 869cd7c7e64925c67b383005c250b992925b8ed2d6b1573bb377c34a33a66b10

See more details on using hashes here.

Provenance

The following attestation bundles were made for annoy_mm-1.17.3rc0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: publish.yml on mathematicalmichael/annoy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file annoy_mm-1.17.3rc0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for annoy_mm-1.17.3rc0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6501f9dae6d1aaea424190863f1ed6bab1c01c8802c1477666f603eee4c3bd13
MD5 dce5819ddcd4aee0b0853c4649f31247
BLAKE2b-256 dab7e5f6277f07ad478f6f48b03fc0c0f63e6237255c87edef7b9ddef357b095

See more details on using hashes here.

Provenance

The following attestation bundles were made for annoy_mm-1.17.3rc0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on mathematicalmichael/annoy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file annoy_mm-1.17.3rc0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for annoy_mm-1.17.3rc0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3cac572ff83582a68bdd6671b5319c06ca72524676ec498e10d6e73761fc6e23
MD5 da9a18dd8a600eb85feff5c94fef7a5c
BLAKE2b-256 71e70cf968e030a4ba9b476119771c4703b73766e272d8c81b37e75b04ea473f

See more details on using hashes here.

Provenance

The following attestation bundles were made for annoy_mm-1.17.3rc0-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: publish.yml on mathematicalmichael/annoy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file annoy_mm-1.17.3rc0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for annoy_mm-1.17.3rc0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 94945a19abd481a8ed4172c02f66b8b3cbe56f12af321482ded9ef9317d18aca
MD5 c3f9872bfb1b722f9587dceb511b90f7
BLAKE2b-256 63d6bc58f92cf3ee7f41ee8ca77792422f4f86cffd2636365688b3db5b587507

See more details on using hashes here.

Provenance

The following attestation bundles were made for annoy_mm-1.17.3rc0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on mathematicalmichael/annoy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file annoy_mm-1.17.3rc0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for annoy_mm-1.17.3rc0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 29113e32a2729346c9ac9e5ca6f18de9ca07b4433e4d2a6e2f325d603fac5269
MD5 c8aea9bce6d2e980b878532b0dfaa4c1
BLAKE2b-256 19facba6a9185704cf394a1d29d45e502e3e6300da3a3ff8ce8d5b965ff350fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for annoy_mm-1.17.3rc0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: publish.yml on mathematicalmichael/annoy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file annoy_mm-1.17.3rc0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for annoy_mm-1.17.3rc0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7ad48d9dcce2c23b322e1bae696f210d3a90e9db07c330a109145c60bb86f279
MD5 b8ab74a1b2a72b35155809eaab2cffad
BLAKE2b-256 3695d09493e73ea441f9a4da68edaf8d54d0a423e0395da7159fb6acf53300e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for annoy_mm-1.17.3rc0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on mathematicalmichael/annoy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file annoy_mm-1.17.3rc0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for annoy_mm-1.17.3rc0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cc13d06ce549396e062546043e80a0512f767f3aff06862d15a4c2b566fe589c
MD5 62ac308c112080cf166b737f260ad5fa
BLAKE2b-256 29fcff254d88addbe2499ad89b9ced096d2f6c0d86e02938c005f30009233669

See more details on using hashes here.

Provenance

The following attestation bundles were made for annoy_mm-1.17.3rc0-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: publish.yml on mathematicalmichael/annoy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file annoy_mm-1.17.3rc0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for annoy_mm-1.17.3rc0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ee5c3530f079f3a3c08d063a08a55a6e3733bd705230dda4a8cbdce2d73396d0
MD5 b43b09dd676b6b59d9ed0c6ef0cbec16
BLAKE2b-256 320277484f248d31eb9eb3facae2c7af584916aa565c794185452fbaee239f24

See more details on using hashes here.

Provenance

The following attestation bundles were made for annoy_mm-1.17.3rc0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on mathematicalmichael/annoy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file annoy_mm-1.17.3rc0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for annoy_mm-1.17.3rc0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 30d7df403217caf455cfc3aa4542cd1f649668dd965a8d48671d4465e35aba18
MD5 d6aa94e4c03d95187c1e45bca35be57b
BLAKE2b-256 d408de3f290b05f012b6a5c83def0c4b10bb9358e5f621f5081c1e1d72e4cd79

See more details on using hashes here.

Provenance

The following attestation bundles were made for annoy_mm-1.17.3rc0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: publish.yml on mathematicalmichael/annoy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file annoy_mm-1.17.3rc0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for annoy_mm-1.17.3rc0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fc4d294f471b399d6f45575cca1322756ded012a2f858e6f513e23892f8e1f42
MD5 cafe52bb888843dd5aec6ed645723f0b
BLAKE2b-256 89e00371eb059b38065750979a0f063946c58734b0ff2ac935baac7f24b23cc4

See more details on using hashes here.

Provenance

The following attestation bundles were made for annoy_mm-1.17.3rc0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on mathematicalmichael/annoy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file annoy_mm-1.17.3rc0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for annoy_mm-1.17.3rc0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a94b922ae1d00dcff6bf12f54195f4dbc58eb111504a5031719dfc1665af2d4b
MD5 302769e0d48304f26697c084caea8224
BLAKE2b-256 739938046dab5c597d6d88ae79d417aef3eab130ce08a685b359826e567abb46

See more details on using hashes here.

Provenance

The following attestation bundles were made for annoy_mm-1.17.3rc0-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: publish.yml on mathematicalmichael/annoy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file annoy_mm-1.17.3rc0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for annoy_mm-1.17.3rc0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2f7cdcf935b389731219e66ac3d0a542f157d295399c4423a9279ba4fc72932e
MD5 234c418e87f2007a8af184008fbe665a
BLAKE2b-256 1bead252b03ad35bff37f96c89c2a9fe145018ae3353df16fc49affce3645b78

See more details on using hashes here.

Provenance

The following attestation bundles were made for annoy_mm-1.17.3rc0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on mathematicalmichael/annoy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file annoy_mm-1.17.3rc0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for annoy_mm-1.17.3rc0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2005ff07e02f82a07a4b817515628581a769388eca5f3d2db4bc1f3e1bc13005
MD5 f83e475546e48df0e85d4c12c1999821
BLAKE2b-256 d027711a57a7f5fbd39d620bbfb33ab1c15b5f80606b12cc7a38dc5825b035e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for annoy_mm-1.17.3rc0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: publish.yml on mathematicalmichael/annoy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file annoy_mm-1.17.3rc0-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for annoy_mm-1.17.3rc0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2dbb54165ccb27567340f72001843baed5869970bc684d6cc86c9476baed06d2
MD5 78c2ced046dca03fb55820ec0ae07701
BLAKE2b-256 edf994d45ad177876d337017c076b3bda7bea85cd3fd27ccf5616d21e3cdd8c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for annoy_mm-1.17.3rc0-cp38-cp38-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on mathematicalmichael/annoy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file annoy_mm-1.17.3rc0-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for annoy_mm-1.17.3rc0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ba61891a3bb723ff6936ccf1002463d687a52a1ff85a128d65b6efd5fc7529ce
MD5 c7b60d88d3d52dab59d5e7f38fea2682
BLAKE2b-256 e367251873abc3a4ab141b6c3dd5f6c0f10e64b4ec427e39d7236fab37337cdb

See more details on using hashes here.

Provenance

The following attestation bundles were made for annoy_mm-1.17.3rc0-cp38-cp38-musllinux_1_2_i686.whl:

Publisher: publish.yml on mathematicalmichael/annoy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file annoy_mm-1.17.3rc0-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for annoy_mm-1.17.3rc0-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 63bdb8dedd4223db7a5a4ae928b2189b76a0d6f9a6855c80bd9185dce496639c
MD5 b4739b64fd16148d96b13b282b50501b
BLAKE2b-256 9900e7a96febb08ff17c252deb94221faf73fb542a9a076451808619cc66e414

See more details on using hashes here.

Provenance

The following attestation bundles were made for annoy_mm-1.17.3rc0-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on mathematicalmichael/annoy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file annoy_mm-1.17.3rc0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for annoy_mm-1.17.3rc0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c91c9b09866ecb5222a91fa23eff6d6b8fbbd76c22ed59769a022d47e2ee886f
MD5 310bbd5d4a9b6b46ef9f350ce8f8e3e6
BLAKE2b-256 bdf084f16fe6ea30d7f39aa8793ad40df1b5c66b2d65bcbad87f2c9ec8ae972e

See more details on using hashes here.

Provenance

The following attestation bundles were made for annoy_mm-1.17.3rc0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: publish.yml on mathematicalmichael/annoy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page