Skip to main content

Scalable approximate nearest neighbor search for variable-length binary bit-vectors using NPHD metric.

Project description

iscc-usearch

Tests Python License Ask DeepWiki

Larger-than-RAM writable HNSW indexes, and variable-length binary vector search.

iscc-usearch is a Python library that extends USearch - a high-performance HNSW library adopted by ClickHouse, LangChain, and others - with three independent capabilities:

Sharded HNSW indexes (ShardedIndex) keep a single active shard in RAM for writes while completed shards are memory-mapped for reads. Works with any vector type and metric USearch supports, including user-defined distance functions. Insert throughput stays consistent and memory stays bounded as the index grows to billions of vectors.

Normalized Prefix Hamming Distance (NphdIndex, ShardedNphdIndex) compares binary vectors of mixed bit-lengths - a 64-bit query finds nearest neighbors among 256-bit vectors with comparable distances. Purpose-built for ISCC (ISO 24138) content fingerprints, also applicable to Matryoshka embeddings, perceptual hashes, and locality-sensitive hashing.

128-bit UUID keys (ShardedIndex128, ShardedNphdIndex128) extend the key space from 64-bit integers to 128-bit bytes(16) keys. Useful when your identifiers are UUIDs, 128-bit hashes, or structured multi-part keys that don't fit in a uint64.

Key features:

  • Bounded memory - only one shard in RAM at a time, the rest memory-mapped
  • Billions of vectors - sharded indexes scale well beyond single-machine RAM
  • Incremental writes - append vectors without rebuilding the index
  • Mixed bit-lengths - 64-bit and 256-bit vectors coexist in the same index
  • 128-bit keys - bytes(16) UUID keys when 64-bit integers are not enough
  • Any distance metric - user-defined metrics via USearch's plugin system
  • Fast - inherits USearch's HNSW engine, benchmarked at 10x the throughput of FAISS

ShardedIndex and NPHD architecture overview

NphdIndex architecture overview

Which index class?

Class Var-len Keys Shards Use when...
NphdIndex uint64 Binary variable-length, fits in RAM
ShardedIndex uint64 Exceeds RAM, any metric
ShardedIndex128 128-bit Same, with 128-bit keys
ShardedNphdIndex uint64 Binary variable-length, exceeds RAM
ShardedNphdIndex128 128-bit Binary variable-length, 128-bit keys

Installation

pip install iscc-usearch

Quick start

Variable-length binary (NphdIndex):

import numpy as np
from iscc_usearch import NphdIndex

index = NphdIndex(max_dim=256)

# Mix 64-bit and 128-bit vectors in the same index
index.add(1, np.array([255, 128, 64, 32, 16, 8, 4, 2], dtype=np.uint8))
index.add(2, np.array([255, 128, 64, 32, 16, 8, 4, 2, 1, 0, 255, 128, 64, 32, 16, 8], dtype=np.uint8))

# Search with a 64-bit query - NPHD compares the common prefix
query = np.array([255, 128, 64, 32, 16, 8, 4, 2], dtype=np.uint8)
matches = index.search(query, count=2)

print(matches.keys)  # Nearest neighbor keys
print(matches.distances)  # NPHD distances in [0.0, 1.0]

Sharded HNSW (ShardedIndex):

import numpy as np
from iscc_usearch import ShardedIndex

# Shards are stored in a directory on disk
index = ShardedIndex(ndim=64, path="my_index", dtype="f32")

# Add vectors - shards rotate automatically when size limit is reached
keys = list(range(1000))
vectors = np.random.rand(1000, 64).astype(np.float32)
index.add(keys, vectors)

# Search across all shards
matches = index.search(vectors[0], count=10)

print(matches.keys)  # Nearest neighbor keys
print(matches.distances)  # Cosine distances

Documentation

Full documentation: https://usearch.iscc.codes/

License

Apache-2.0

Project details


Download files

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

Source Distribution

iscc_usearch-0.2.1.tar.gz (31.6 kB view details)

Uploaded Source

Built Distribution

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

iscc_usearch-0.2.1-py3-none-any.whl (36.0 kB view details)

Uploaded Python 3

File details

Details for the file iscc_usearch-0.2.1.tar.gz.

File metadata

  • Download URL: iscc_usearch-0.2.1.tar.gz
  • Upload date:
  • Size: 31.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.3 {"installer":{"name":"uv","version":"0.10.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for iscc_usearch-0.2.1.tar.gz
Algorithm Hash digest
SHA256 35420ce88cb697ffdba5f03a43fea1d8dfb0e072c03e23045fb1f536ba517924
MD5 d753f618564cf49ca6565fb1b7642cf0
BLAKE2b-256 e160025f6a9a64595a45a2859d4f554d2b5c4f808e596ecc6d15f1adc6497447

See more details on using hashes here.

File details

Details for the file iscc_usearch-0.2.1-py3-none-any.whl.

File metadata

  • Download URL: iscc_usearch-0.2.1-py3-none-any.whl
  • Upload date:
  • Size: 36.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.3 {"installer":{"name":"uv","version":"0.10.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for iscc_usearch-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 27cf07654e4f0e62759be3849469f39c7a72459e258f2c51baa9ea9bc6e1c027
MD5 120de9098c78c7e87a7714cb1ce66ef6
BLAKE2b-256 913ee48eaa1848200c050b0cb5619e3f2858344c8b5cfa0ef9803d78d12c1232

See more details on using hashes here.

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