Cloud.Unum.USearch
2.4.1
See the version list below for details.
dotnet add package Cloud.Unum.USearch --version 2.4.1
NuGet\Install-Package Cloud.Unum.USearch -Version 2.4.1
<PackageReference Include="Cloud.Unum.USearch" Version="2.4.1" />
paket add Cloud.Unum.USearch --version 2.4.1
#r "nuget: Cloud.Unum.USearch, 2.4.1"
// Install Cloud.Unum.USearch as a Cake Addin #addin nuget:?package=Cloud.Unum.USearch&version=2.4.1 // Install Cloud.Unum.USearch as a Cake Tool #tool nuget:?package=Cloud.Unum.USearch&version=2.4.1
<h1 align="center">USearch</h1> <h3 align="center"> Faster & Smaller Single-File<br/> Search Engine for Vectors & Texts<br/> </h3> <br/>
<p align="center"> <a href="https://discord.gg/A6wxt6dS9j"><img height="25" src="https://github.com/unum-cloud/.github/raw/main/assets/discord.svg" alt="Discord"></a> <a href="https://www.linkedin.com/company/unum-cloud/"><img height="25" src="https://github.com/unum-cloud/.github/raw/main/assets/linkedin.svg" alt="LinkedIn"></a> <a href="https://twitter.com/unum_cloud"><img height="25" src="https://github.com/unum-cloud/.github/raw/main/assets/twitter.svg" alt="Twitter"></a> <a href="https://unum.cloud/post"><img height="25" src="https://github.com/unum-cloud/.github/raw/main/assets/blog.svg" alt="Blog"></a> <a href="https://github.com/unum-cloud/usearch"><img height="25" src="https://github.com/unum-cloud/.github/raw/main/assets/github.svg" alt="GitHub"></a> </p>
<p align="center"> Euclidean • Angular • Bitwise • Haversine • User-Defined Metrics <br/> <a href="https://unum-cloud.github.io/usearch/cpp">C++ 11</a> • <a href="https://unum-cloud.github.io/usearch/python">Python 3</a> • <a href="https://unum-cloud.github.io/usearch/javascript">JavaScript</a> • <a href="https://unum-cloud.github.io/usearch/java">Java</a> • <a href="https://unum-cloud.github.io/usearch/rust">Rust</a> • <a href="https://unum-cloud.github.io/usearch/c">C 99</a> • <a href="https://unum-cloud.github.io/usearch/objective-c">Objective-C</a> • <a href="https://unum-cloud.github.io/usearch/swift">Swift</a> • <a href="https://unum-cloud.github.io/usearch/csharp">C#</a> • <a href="https://unum-cloud.github.io/usearch/golang">GoLang</a> • <a href="https://unum-cloud.github.io/usearch/wolfram">Wolfram</a> <br/> Linux • MacOS • Windows • iOS • Docker • WebAssembly </p>
<div align="center"> <a href="https://pypi.org/project/usearch/"> <img alt="PyPI - Downloads" src="https://img.shields.io/pypi/dm/usearch?label=pypi%20downloads"> </a> <a href="https://www.npmjs.com/package/usearch"> <img alt="npm" src="https://img.shields.io/npm/dy/usearch?label=npm%20dowloads"> </a> <a href="https://crates.io/crates/usearch"> <img alt="Crates.io" src="https://img.shields.io/crates/d/usearch?label=crate%20downloads"> </a> <a href="https://www.nuget.org/packages/Cloud.Unum.USearch"> <img alt="Nuget" src="https://img.shields.io/nuget/dt/Cloud.Unum.USearch?label=NuGet"> </a> <a href="https://hub.docker.com/r/unum/usearch"> <img alt="Docker Pulls" src="https://img.shields.io/docker/pulls/unum/usearch?label=Docker"> </a> <img alt="GitHub code size in bytes" src="https://img.shields.io/github/languages/code-size/unum-cloud/usearch"> </div>
- ✅ Benchmark-topping performance.
- ✅ Simple and extensible single C++11 header implementation.
- ✅ SIMD-optimized and user-defined metrics with JIT compilation.
- ✅ Variable dimensionality vectors for unique applications, including search over compressed data.
- ✅ Bitwise Tanimoto and Sorensen coefficients for Genomics and Chemistry applications.
- ✅ Hardware-agnostic
f16
&i8
- half-precision & quarter-precision support. - ✅ View large indexes from disk without loading into RAM.
- ✅ Space-efficient point-clouds with
uint40_t
, accommodating 4B+ size. - ✅ Compatible with OpenMP and custom "executors", for fine-grained control over CPU utilization.
- ✅ Heterogeneous lookups, renaming/relabeling, and on-the-fly deletions.
- ✅ Near-real-time clustering and sub-clusterings for Tens or Millions of clusters.
- ✅ Semantic Search and Joins.
Comparison with FAISS
FAISS is a widely recognized standard for high-performance vector search engines. USearch and FAISS both employ the same HNSW algorithm, but they differ significantly in their design principles. USearch is compact and broadly compatible without sacrificing performance, with a primary focus on user-defined metrics and fewer dependencies.
FAISS | USearch | |
---|---|---|
Implementation | 84 K SLOC in faiss/ |
3 K SLOC in usearch/ |
Supported metrics | 9 fixed metrics | Any User-Defined metrics |
Supported languages | C++, Python | 10 languages |
Supported ID types | uint32_t , uint64_t |
uint32_t , uint40_t , uint64_t |
Dependencies | BLAS, OpenMP | None |
Bindings | SWIG | Native |
Acceleration | Learned Quantization | Downcasting |
Base functionality is identical to FAISS, and the interface must be familiar if you have ever investigated Approximate Nearest Neighbors search:
$ pip install usearch
import numpy as np
from usearch.index import Index
index = Index(
ndim=3, # Define the number of dimensions in input vectors
metric='cos', # Choose 'l2sq', 'haversine' or other metric, default = 'ip'
dtype='f32', # Quantize to 'f16' or 'i8' if needed, default = 'f32'
connectivity=16, # Optional: How frequent should the connections in the graph be
expansion_add=128, # Optional: Control the recall of indexing
expansion_search=64, # Optional: Control the quality of search
)
vector = np.array([0.2, 0.6, 0.4])
index.add(42, vector)
matches = index.search(vector, 10)
assert len(index) == 1
assert len(matches) == 1
assert matches[0].key == 42
assert matches[0].distance <= 0.001
assert np.allclose(index[42], vector)
Comparing the performance of FAISS against USearch on 1 Million 96-dimensional vectors from the famous Deep1B dataset, once can expect the following numbers on modern AWS c7g.metal
instances.
FAISS, f32 |
USearch, f32 |
USearch, f16 |
USearch, i8 |
|
---|---|---|---|---|
Batch Insert | 16 K/s | 73 K/s | 100 K/s | 104 K/s +550% |
Batch Search | 82 K/s | 103 K/s | 113 K/s | 134 K/s +63% |
Bulk Insert | 76 K/s | 105 K/s | 115 K/s | 202 K/s +165% |
Bulk Search | 118 K/s | 174 K/s | 173 K/s | 304 K/s +157% |
Recall @ 10 | 99% | 99.2% | 99.1% | 99.2% |
HNSW was configured with identical hyper-parameters: connectivity
M=16
, expansion @ constructionefConstruction=128
, and expansion @ searchef=64
. Batch size is 256. Jump to the Performance Tuning section to read about the effects of those hyper-parameters.
User-Defined Functions
While most vector search packages concentrate on just a couple of metrics - "Inner Product distance" and "Euclidean distance," USearch extends this list to include any user-defined metrics. This flexibility allows you to customize your search for a myriad of applications, from computing geo-spatial coordinates with the rare Haversine distance to creating custom metrics for composite embeddings from multiple AI models.
Unlike older approaches indexing high-dimensional spaces, like KD-Trees and Locality Sensitive Hashing, HNSW doesn't require vectors to be identical in length. They only have to be comparable. So you can apply it in obscure applications, like searching for similar sets or fuzzy text matching, using GZip as a distance function.
Read more about JIT and UDF in USearch Python SDK.
Memory Efficiency, Downcasting, and Quantization
Training a quantization model and dimension-reduction is a common approach to accelerate vector search. Those, however, are only sometimes reliable, can significantly affect the statistical properties of your data, and require regular adjustments if your distribution shifts.
Instead, we have focused on high-precision arithmetic over low-precision downcasted vectors.
The same index, and add
and search
operations will automatically down-cast or up-cast between f32_t
, f16_t
, f64_t
, and i8_t
representations, even if the hardware doesn't natively support it.
Continuing the topic of memory efficiency, we provide a uint40_t
to allow collection with over 4B+ vectors without allocating 8 bytes for every neighbor reference in the proximity graph.
Serialization & Serving Index
from Disk
USearch supports multiple forms of serialization:
- Into a file defined with a path.
- Into a stream defined with a callback, serializing or reconstructing incrementally.
- Into a buffer of fixed length, or a memory-mapped file, that supports random access.
The latter allows you to serve indexes from external memory, enabling you to optimize your server choices for indexing speed and serving costs. This can result in 20x cost reduction on AWS and other public clouds.
index.save("index.usearch")
loaded_copy = index.load("index.usearch")
view = Index.restore("index.usearch", view=True)
other_view = Index(ndim=..., metric=CompiledMetric(...))
other_view.view("index.usearch")
Exact vs. Approximate Search
Approximate search methods, such as HNSW, are predominantly used when an exact brute-force search becomes too resource-intensive.
This typically occurs when you have millions of entries in a collection.
For smaller collections, we offer a more direct approach with the search
method.
from usearch.index import search, MetricKind, Matches, BatchMatches
import numpy as np
# Generate 10'000 random vectors with 1024 dimensions
vectors = np.random.rand(10_000, 1024).astype(np.float32)
vector = np.random.rand(1024).astype(np.float32)
one_in_many: Matches = search(vectors, vector, 50, MetricKind.L2sq, exact=True)
many_in_many: BatchMatches = search(vectors, vectors, 50, MetricKind.L2sq, exact=True)
By passing the exact=True
argument, the system bypasses indexing altogether and performs a brute-force search through the entire dataset using SIMD-optimized similarity metrics from SimSIMD.
When compared to FAISS's IndexFlatL2
in Google Colab, USearch may offer up to a 20x performance improvement:
faiss.IndexFlatL2
: 55.3 ms.usearch.index.search
: 2.54 ms.
Indexes
for Multi-Index Lookups
For larger workloads targeting billions or even trillions of vectors, parallel multi-index lookups become invaluable. These lookups prevent the need to construct a single, massive index, allowing users to query multiple smaller ones instead.
from usearch.index import Indexes
multi_index = Indexes(
indexes: Iterable[usearch.index.Index] = [...],
paths: Iterable[os.PathLike] = [...],
view: bool = False,
threads: int = 0,
)
multi_index.search(...)
Clustering
Once the index is constructed, it can be used to cluster entries much faster.
In essense, the Index
itself can be seen as a clustering, and it allows iterative deepening.
clustering = index.cluster(
min_count=10, # Optional
max_count=15, # Optional
threads=..., # Optional
)
# Get the clusters and their sizes
centroid_keys, sizes = clustering.centroids_popularity
# Use Matplotlib draw a histogram
clustering.plot_centroids_popularity()
# Export a NetworkX graph of the clusters
g = clustering.network
# Get members of a specific cluster
first_members = clustering.members_of(centroid_keys[0])
# Deepen into that cluster spliting it into more parts, all same arguments supported
sub_clustering = clustering.subcluster(min_count=..., max_count=...)
Using Scikit-Learn, on a 1 Million point dataset, one may expect queries to take anywhere from minutes to hours, depending on the number of clusters you want to highlight. For 50'000 clusters the performance difference between USearch and conventional clustering methods may easily reach 100x.
Joins, One-to-One, One-to-Many, and Many-to-Many Mappings
One of the big questions these days is how will AI change the world of databases and data management.
Most databases are still struggling to implement high-quality fuzzy search, and the only kind of joins they know are deterministic.
A join
is different from searching for every entry, as it requires a one-to-one mapping, banning collisions among separate search results.
Exact Search | Fuzzy Search | Semantic Search ? |
---|---|---|
Exact Join | Fuzzy Join ? | Semantic Join ?? |
Using USearch one can implement sub-quadratic complexity approximate, fuzzy, and semantic joins. This can come in handy in any fuzzy-matching tasks, common to Database Management Software.
men = Index(...)
women = Index(...)
pairs: dict = men.join(women, max_proposals=0, exact=False)
Read more in post: From Dating to Vector Search - "Stable Marriages" on a Planetary Scale 👩❤️👨
Functionality
By now, the core functionality is supported across all bindings. Broader functionality is ported per request.
C++ 11 | Python 3 | C 99 | Java | JavaScript | Rust | GoLang | Swift | |
---|---|---|---|---|---|---|---|---|
Add, search | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
Save, load, view | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
User-defined metrics | ✅ | ✅ | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ |
Joins | ✅ | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ |
Variable-length vectors | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ |
4B+ capacities | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ |
Application Examples
USearch + AI = Multi-Modal Semantic Search
AI has a growing number of applications, but one of the coolest classic ideas is to use it for Semantic Search. One can take an encoder model, like the multi-modal UForm, and a web-programming framework, like UCall, and build a text-to-image search platform in just 20 lines of Python.
import ucall
import uform
import usearch
import numpy as np
import PIL as pil
server = ucall.Server()
model = uform.get_model('unum-cloud/uform-vl-multilingual')
index = usearch.index.Index(ndim=256)
@server
def add(key: int, photo: pil.Image.Image):
image = model.preprocess_image(photo)
vector = model.encode_image(image).detach().numpy()
index.add(key, vector.flatten(), copy=True)
@server
def search(query: str) -> np.ndarray:
tokens = model.preprocess_text(query)
vector = model.encode_text(tokens).detach().numpy()
matches = index.search(vector.flatten(), 3)
return matches.keys
server.run()
A more complete demo with Streamlit is available on GitHub. We have pre-processed some commonly used datasets, cleaned the images, produced the vectors, and pre-built the index.
Dataset | Modalities | Images | Download |
---|---|---|---|
Unsplash | Images & Descriptions | 25 K | HuggingFace / Unum |
Conceptual Captions | Images & Descriptions | 3 M | HuggingFace / Unum |
Arxiv | Titles & Abstracts | 2 M | HuggingFace / Unum |
USearch + RDKit = Molecular Search
Comparing molecule graphs and searching for similar structures is expensive and slow. It can be seen as a special case of the NP-Complete Subgraph Isomorphism problem. Luckily, domain-specific approximate methods exist. The one commonly used in Chemistry, is to generate structures from SMILES, and later hash them into binary fingerprints. The latter are searchable with bitwise similarity metrics, like the Tanimoto coefficient. Below is an example using the RDKit package.
from usearch.index import Index, MetricKind
from rdkit import Chem
from rdkit.Chem import AllChem
import numpy as np
molecules = [Chem.MolFromSmiles('CCOC'), Chem.MolFromSmiles('CCO')]
encoder = AllChem.GetRDKitFPGenerator()
fingerprints = np.vstack([encoder.GetFingerprint(x) for x in molecules])
fingerprints = np.packbits(fingerprints, axis=1)
index = Index(ndim=2048, metric=MetricKind.Tanimoto)
keys = np.arange(len(molecules))
index.add(keys, fingerprints)
matches = index.search(fingerprints, 10)
USearch + POI Coordinates = GIS Applications... on iOS?
With Objective-C and Swift iOS bindings, USearch can be easily used in mobile applications. The SwiftVectorSearch project illustrates how to build a dynamic, real-time search system on iOS. In this example, we use 2-dimensional vectors—encoded as latitude and longitude—to find the closest Points of Interest (POIs) on a map. The search is based on the Haversine distance metric, but can easily be extended to support high-dimensional vectors.
Integrations
- GPTCache: Python.
- LangChain: Python and JavaScipt.
- ClickHouse: C++.
- Microsoft Semantic Kernel: Python and C#.
Citations
@software{Vardanian_USearch_2022,
doi = {10.5281/zenodo.7949416},
author = {Vardanian, Ash},
title = {{USearch by Unum Cloud}},
url = {https://github.com/unum-cloud/usearch},
version = {2.4.1},
year = {2022},
month = jun,
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
2.16.2 | 90 | 11/4/2024 |
2.16.1 | 66 | 11/3/2024 |
2.16.0 | 79 | 10/29/2024 |
2.15.3 | 129 | 10/10/2024 |
2.15.2 | 163 | 9/28/2024 |
2.15.1 | 159 | 8/28/2024 |
2.14.0 | 99 | 8/19/2024 |
2.13.5 | 110 | 8/18/2024 |
2.13.4 | 106 | 8/15/2024 |
2.13.3 | 100 | 8/14/2024 |
2.13.2 | 115 | 8/12/2024 |
2.13.1 | 86 | 8/7/2024 |
2.13.0 | 99 | 8/6/2024 |
2.12.0 | 278 | 4/29/2024 |
2.11.7 | 133 | 4/15/2024 |
2.11.6 | 123 | 4/14/2024 |
2.11.5 | 107 | 4/12/2024 |
2.11.4 | 112 | 4/11/2024 |
2.11.3 | 109 | 4/10/2024 |
2.11.2 | 101 | 4/10/2024 |
2.11.1 | 100 | 4/10/2024 |
2.11.0 | 115 | 4/8/2024 |
2.10.5 | 109 | 4/4/2024 |
2.10.4 | 104 | 4/2/2024 |
2.10.3 | 101 | 4/2/2024 |
2.10.2 | 106 | 4/1/2024 |
2.10.1 | 106 | 4/1/2024 |
2.10.0 | 120 | 3/31/2024 |
2.9.2 | 154 | 3/5/2024 |
2.9.1 | 307 | 2/27/2024 |
2.9.0 | 119 | 2/22/2024 |
2.8.16 | 238 | 1/24/2024 |
2.8.15 | 149 | 1/9/2024 |
2.8.14 | 187 | 11/26/2023 |
2.8.13 | 128 | 11/18/2023 |
2.8.12 | 114 | 11/13/2023 |
2.8.11 | 123 | 11/11/2023 |
2.8.10 | 124 | 11/11/2023 |
2.8.9 | 126 | 11/9/2023 |
2.8.7 | 116 | 11/9/2023 |
2.8.6 | 111 | 11/6/2023 |
2.8.5 | 122 | 11/6/2023 |
2.8.4 | 112 | 11/6/2023 |
2.8.3 | 108 | 11/5/2023 |
2.8.2 | 148 | 10/30/2023 |
2.8.1 | 123 | 10/24/2023 |
2.7.7 | 138 | 10/22/2023 |
2.7.3 | 131 | 10/21/2023 |
2.7.2 | 127 | 10/17/2023 |
2.7.1 | 129 | 10/17/2023 |
2.7.0 | 132 | 10/13/2023 |
2.6.1 | 129 | 10/13/2023 |
2.6.0 | 124 | 9/25/2023 |
2.5.1 | 117 | 9/20/2023 |
2.4.1 | 121 | 9/18/2023 |
2.4.0 | 123 | 9/18/2023 |
2.3.2 | 135 | 9/10/2023 |
2.3.1 | 132 | 9/8/2023 |
2.3.0 | 140 | 9/6/2023 |
2.2.1 | 121 | 9/5/2023 |
2.2.0 | 120 | 9/5/2023 |
2.1.3 | 124 | 9/4/2023 |
2.1.2 | 117 | 9/4/2023 |
2.1.1 | 131 | 9/2/2023 |
2.1.0 | 133 | 8/31/2023 |
2.0.2 | 135 | 8/30/2023 |
2.0.1 | 143 | 8/28/2023 |
2.0.0 | 141 | 8/28/2023 |