特征向量内存快速查找库 GitHub - spotify/annoy: Approximate Nearest Neighbors in C++/Python optimized for memory usage and loading/saving to disk

标签: | 发表时间:2018-10-12 11:20 | 作者:
出处:https://github.com

背景

还有一些其他库可以进行最近邻搜索。Annoy几乎和最快的库一样快(见下文),但实际上还有另一个功能让Annoy与众不同:它能够将静态文件用作索引。特别是,这意味着您可以跨进程共享索引。Annoy还将创建索引与加载它们分离,因此您可以将索引作为文件传递并快速映射到内存中。Annoy的另一个好处是它试图最小化内存占用,因此索引非常小。

为什么这有用?如果你想找到最近的邻居并且你有很多CPU,你只需要RAM来适应索引。您还可以传递和分发静态文件 在生产环境,Hadoop作业等使用。任何进程都可以将索引加载(mmap)到内存中,并且能够立即执行查找。

我们在 Spotify上使用它来获取音乐推荐。在运行矩阵分解算法之后,每个用户/项目可以表示为f维空间中的向量。此库可帮助我们搜索类似的用户/项目。我们在高维空间中拥有数百万个轨道,因此内存使用是首要考虑因素。

Annoy是由 Erik BernhardssonHack Week期间的几个下午建造的。

功能摘要

  • 欧几里德距离曼哈顿距离余弦距离汉明距离点(内)产品距离
  • 余弦距离相当于归一化向量的欧几里德距离= sqrt(2-2 * cos(u,v))
  • 如果你没有太多的尺寸(如<100),效果会更好,但即使是最多1000个维度,它也表现得非常出色
  • 内存使用量小
  • 允许您在多个进程之间共享内存
  • 索引创建与查找分开(特别是在创建树后,您无法添加更多项目)
  • 本机Python支持,使用2.6,2.7,3.3,3.4,3.5进行测试

Annoy

https://img.shields.io/travis/spotify/annoy/master.svg?style=flat https://ci.appveyor.com/api/projects/status/github/spotify/annoy?svg=true&pendingText=windows%20-%20Pending&passingText=windows%20-%20OK&failingText=windows%20-%20Failing https://img.shields.io/pypi/v/annoy.svg?style=flat

Annoy ( Approximate Nearest NeighborsOh 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 mmappedinto memory so that many processes may share the same data.

Install

To install, simply do sudo pip install annoyto 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 the RAM to fit 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 Spotifyfor 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 Bernhardssonin 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.6, 2.7, 3.3, 3.4, 3.5

Python code example

fromannoyimportAnnoyIndeximportrandom

f=40t=AnnoyIndex(f)#Length of item vector that will be indexedforiinxrange(1000):
    v=[random.gauss(0,1)forzinxrange(f)]
    t.add_item(i, v)

t.build(10)#10 treest.save('test.ann')#...u=AnnoyIndex(f)
u.load('test.ann')#super fast, will just mmap the fileprint(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='angular')returns a new index that's read-write and stores vector of fdimensions. 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)+1items.
  • a.build(n_trees)builds a forest of n_treestrees. More trees gives higher precision when querying. After calling build, no more items can be added.
  • a.save(fn)saves the index to disk.
  • a.load(fn)loads (mmaps) an index from disk.
  • a.unload()unloads.
  • a.get_nns_by_item(i, n, search_k=-1, include_distances=False)returns the nclosest items. During the query it will inspect up to search_knodes which defaults to n_trees * nif not provided. search_kgives you a run-time tradeoff between better accuracy and speed. If you set include_distancesto 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 ithat was previously added.
  • a.get_distance(i, j)returns the distance between items iand j. NOTE: this used to return the squareddistance, but has been changed as of Aug 2016.
  • a.get_n_items()returns the number of items in the index.

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 parameters you can use to tune Annoy: the number of trees n_treesand the number of nodes to inspect during searching search_k.

  • n_treesis 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_kis 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_kis not provided, it will default to n * n_trees * Dwhere nis the number of approximate nearest neighbors and Dis a constant depending on the metric. Otherwise, search_kand n_treesare roughly independent, i.e. a the value of n_treeswill not affect search time if search_kis held constant and vice versa. Basically it's recommended to set n_treesas large as possible given the amount of memory you can afford, and it's recommended to set search_kas large as possible given the time constraints you have for the queries.

How does it work

Using random projectionsand 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) 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

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 Kouand 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-usergroup. I'm @fulhackon Twitter.

相关 [特征向量 内存 github] 推荐:

特征向量内存快速查找库 GitHub - spotify/annoy: Approximate Nearest Neighbors in C++/Python optimized for memory usage and loading/saving to disk

- -
还有一些其他库可以进行最近邻搜索. Annoy几乎和最快的库一样快(见下文),但实际上还有另一个功能让Annoy与众不同:它能够将静态文件用作索引. 特别是,这意味着您可以跨进程共享索引. Annoy还将创建索引与加载它们分离,因此您可以将索引作为文件传递并快速映射到内存中. Annoy的另一个好处是它试图最小化内存占用,因此索引非常小.

Python提取数字图片特征向量 | kTWO-个人博客

- -
在机器学习中有一种学习叫做手写数字识别,其主要功能就是让机器识别出图片中的数字,其步骤主要包括:图片特征提取、将特征值点阵转化为特征向量、进行模型训练. 第一步便是提取图片中的特征提取. 数据的预处理关系着后面模型的构建情况,所以,数据的处理也是机器学习中非常重要的一部分. 下面我就说一下如何提取图片中的特征向量.

Home · JohnLangford/vowpal_wabbit Wiki · GitHub

- -
There are two ways to have a fast learning algorithm: (a) start with a slow algorithm and speed it up, or (b) build an intrinsically fast learning algorithm.

GitHub - jgraph/drawio: Source to www.draw.io

- -
draw.io supports IE 11, Chrome 32+, Firefox 38+, Safari 9.1.x, 10.1.x and 11.0.x, Opera 20+, Native Android browser 5.1.x+, the default browser in the current and previous major iOS versions (e.g.

git和github简介(上)

- linyehui - 没做完,没准备好
在此贴上本人在Web标准化交流会6月25日北京站的主题分享. 在线PPT:http://jinjiang.github.com/slides/learning-git/. PPT源码:https://github.com/Jinjiang/slides/tree/gh-pages/learning-git.

Github使用指南(转)

- - CSDN博客推荐文章
来自:https://github.com/neuola/neuola-legacy/wiki/github%E4%BD%BF%E7%94%A8%E6%8C%87%E5%8D%97. 如果你只是想了解 github 的使用,请跳到 Github 简介一节. 作为程序员大军之一,想必大家有这样的经历吧.

github 上的好东西

- - 收集分享互联网资源
基于HTML5的专业级图像处理开源引擎.

Windows 下 使用TortoiseGit GitHub

- - CSDN博客研发管理推荐文章
TortoiseGit依赖msysgit,首先下载: http://code.google.com/p/msysgit/downloads/detail?name=msysGit-fullinstall-1.8.1.2-preview20130201.exe&can=2&q=. 再下载TortoiseGit: http://code.google.com/p/tortoisegit/wiki/Download?tm=2.

一个 GitHub Trending 小工具

- - IT瘾-dev
Github Trending基本上是我每天都会浏览的网页,上面会及时发布一些GIthub上比较有潜力的项目,或者说每日Star数增量排行榜. 不过由于Github Trending经常会实时更新,即使你访问得再勤,难免还是会错过一些你感兴趣的项目,为此不少人都想出了自己的解决办法,例如. josephyzhou,他的 github-trending项目得到了众多人的青睐,我仔细阅读了他的源码 (Go),发现实现也较为简单, 就用Python 重写了一下,发现代码少了好多,详见 我的 github-trending.

blong/clickhouse .md at master · xingxing9688/blong · GitHub

- -
https://clickhouse.yandex/tutorial.html快速搭建集群参考. https://clickhouse.yandex/reference_en.html官网文档. https://habrahabr.ru/company/smi2/blog/317682/关于集群配置参考.