Delta-Compressed Embedding Engine — compressed approximate similarity search for correlated embeddings
Project description
DCEE — Delta-Compressed Embedding Engine
Introduction
DCEE (Delta-Compressed Embedding Engine) targets embeddings that sit together in semantic space—document chunks, chats, logs, or clustered corpora—where sequential delta coding plus quantization shrinks storage versus raw float32 vectors. The pipeline clusters vectors (MiniBatch k-means), orders points inside each cluster to keep deltas small, stores keyframes + deltas, and at query time uses keyframe routing with optional Adaptive Margin Probing (AMP) to widen cluster search when scores are ambiguous. Math runs on CuPy when available, otherwise NumPy.
On correlated synthetic benchmarks in this repo (benchmark_dcee.py, 50,000 normalized vectors, Recall@5 vs exact inner-product neighbors), a tuned DCEE+AMP configuration achieved ~96% recall with ~4× smaller on-disk payload than storing uncompressed float32 norms (see compressed size column below). Latency and recall depend on hardware, n_probe, quantization, and dataset; treat these as example numbers, not guarantees for every workload.
Example benchmark snapshot (internal script, same queries for all methods)
| Method | Recall@5 | P50 (ms) | P95 (ms) | QPS (approx.) | Build (s) | Size (MB) |
|---|---|---|---|---|---|---|
| DCEE+AMP (tuned) | 96.4% | 1.37 | 1.95 | 422 | 12.57 | 6.40 |
FAISS IndexFlatIP |
100.0% | 0.53 | 0.79 | 1897 | 0.01 | 25.60 |
FAISS HNSW (M=32, ef=64) |
100.0% | 0.09 | 0.11 | 10689 | 0.63 | 39.21 |
FAISS IVF-Flat (nprobe=8) |
90.6% | 0.03 | 0.03 | 36364 | 0.48 | 26.47 |
Takeaway: DCEE trades some recall versus exact flat search for much smaller index bytes; graph/IVF methods can be faster but use different memory/compute tradeoffs. Reproduce or tune with benchmark_dcee.py (and tune_dcee.py) on your own data.
Install
From PyPI (recommended):
pip install dcee
Install a specific release:
pip install "dcee>=0.1.0"
Dependencies (pulled in automatically): numpy, scikit-learn, tqdm. Python 3.10+.
Optional GPU acceleration: install a CuPy wheel that matches your CUDA toolkit (e.g. cupy-cuda12x). If CuPy is not installed, DCEE runs on NumPy (CPU).
Development (editable install from a clone):
git clone https://github.com/arjun988/DCEE.git
cd DCEE
pip install -e ".[dev]"
Quick start
import numpy as np
from dcee import DCEEConfig, DCEEEngine, is_gpu_available
print("GPU:", is_gpu_available())
emb = np.random.randn(10_000, 128).astype(np.float32)
emb /= np.linalg.norm(emb, axis=1, keepdims=True)
cfg = DCEEConfig.tuned_for(len(emb), emb.shape[1])
engine = DCEEEngine(cfg)
engine.build(emb)
q = emb[0]
for idx, score in engine.search(q, top_k=5):
print(idx, score)
engine.save("index.dce2")
loaded = DCEEEngine.from_file("index.dce2")
print(loaded.search(q, top_k=3))
Configuration
DCEEConfig: defaults fordim,n_clusters,keyframe_every,quantization,n_probe,n_probe_max, AMP (adaptive_probe,adaptive_probe_margin),top_k_refine,verbose.DCEEConfig.tuned_for(n_vectors, dim): heuristic scale-aware defaults.
Set verbose=False for quiet builds and loads.
License
See LICENSE in the repository.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file dcee-1.0.2.tar.gz.
File metadata
- Download URL: dcee-1.0.2.tar.gz
- Upload date:
- Size: 9.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cfbe665ea71f578127db08fda69ce794537f4b3de8e602c5dae391d8d3a8c273
|
|
| MD5 |
100e282daa7c6ae136e6c0bb7efdf670
|
|
| BLAKE2b-256 |
bed2f8de9de28ede43855bef57074f09ddaac7c6e293f3a75a0a3d0e7662c4b4
|
File details
Details for the file dcee-1.0.2-py3-none-any.whl.
File metadata
- Download URL: dcee-1.0.2-py3-none-any.whl
- Upload date:
- Size: 9.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8ba799f7e239905868885635c1eae27660094b481019fe7c3179cab1525a42e3
|
|
| MD5 |
d938c45ad1075261fb0d4cfafa157b43
|
|
| BLAKE2b-256 |
d7d26d1bf9ac813d28d585e474e8445aa2e984b654309cb029f3e8b32fc7b18a
|