惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

WordPress大学
WordPress大学
Jina AI
Jina AI
小众软件
小众软件
GbyAI
GbyAI
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 【当耐特】
D
DataBreaches.Net
腾讯CDC
V
Visual Studio Blog
博客园 - 叶小钗
B
Blog
Apple Machine Learning Research
Apple Machine Learning Research
T
The Blog of Author Tim Ferriss
S
SegmentFault 最新的问题
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
V2EX
博客园 - 三生石上(FineUI控件)
云风的 BLOG
云风的 BLOG
The Cloudflare Blog
MongoDB | Blog
MongoDB | Blog
有赞技术团队
有赞技术团队
U
Unit 42
博客园 - 司徒正美
博客园 - 聂微东

Show HN

GitHub - astefanutti/shaderbang: Shebang for Shaders Show HN: AI agents for UK GDAD PCF roles and their skills The Two Pillars: Mixer Mode and Meta-Software in the Reorganization of Software Work After AI GitHub - JaiCode08/teleport-env What 1,000+ Harness Experiments Taught Me About Self-Improving Agents Show HN: Liiists, a Markdown-first, iOS and CLI list app SwiperTab – Get this Extension for 🦊 Firefox (en-US) GitHub - kouhxp/fftext: Summarize, explain, fact-check, or translate any text, URL, or file. No GPU. No cloud. One command GitHub - sweetpad-dev/sweetpad: Develop Swift/iOS projects using VSCode GitHub - dogmaticdev/IRON: IRON a.k.a. Intermediate Representation Object Notation is a Interpreter/Database that is used to create Programming Languages. GitHub - sjhalani7/vaen: Package your AI coding harness into a portable .agent file, and share it across repos, teams, & the community without ever having to copy-paste instructions, skills, MCP config, or secrets. Show HN: Gandalf the Grader Show HN: Citadeld – replay any CI failure locally from a single file GitHub - tdortman/cuSBF: High-Performance GPU Super Bloom Filter coral-ai/claude-code-token-xray at main · Coral-Bricks-AI/coral-ai GitHub - ulyssestenn/funes: Funes is a Git-based framework for LLM-managed knowledge work: an AI Librarian ingests raw sources, builds an interlinked Markdown knowledge base, and uses it to produce cited reports, analyses, and other outputs. GitHub - ThatXliner/gah: Git Add Hunk, built for agents to use GitHub - harmont-dev/harmont-cli: Command-line client for the Harmont CI platform GitHub - brooksmcmillin/mcp-authflow: OAuth 2.0 Authorization Server framework for MCP servers GitHub - javaid-codes/audit-supply-chain-agents GitHub - amorey/gochan: A small library of common channel architectures for Go, inspired by Rust GitHub - arifozgun/OpenGem: Free, Open-Source AI API Gateway with Gemini, OpenAI & Anthropic Compatibility in 1 file GitHub - Pranesh950/BioPetals: 🌸 Run BIOxAI models at home, BitTorrent-style. Fine-tuning and inference up to 10x faster than offloading GitHub - cnguyen14/bounty-doctor: Diagnose a GitHub bounty issue before you waste hours: detects honeypot scam repos, AI-bot attempt swarms, and stale contests. Show HN: CoreMCP – MCP Server for On-Prem DBs Show HN: KittyHTML – Render HTML/CSS as an inline image in your terminal GitHub - bingud/filemat: Web-based file manager Show HN: TruthLens – Free multi-signal deepfake image detector GitHub - apexlocal-jz/claude-usage-tray: Windows system-tray app showing your Claude Code rate-limit usage at a glance. Zero deps, ~300 lines of PowerShell. Cross-IDE (works regardless of VS Code, Cursor, plain terminal). Release v0.1.2.1 · kouhxp/yapsnap
GitHub - clark-labs-inc/clark-hash: Clark Hash, 32x small...
stan_kirdey · 2026-05-27 · via Show HN

Clark Hash is a Rust package for compact, searchable sketches of neural embeddings. It packages a stateless sparse Johnson-Lindenstrauss projection with fixed scalar quantization, so each database vector can be encoded independently and searched later with an asymmetric floating-point query sketch.

The core codec was originally developed under the internal name SQuaJL. The Rust API keeps the SQuaJL and SQuaJLConfig names for compatibility, and also exports ClarkHash and ClarkHashConfig aliases for new code.

Links

Main Use Cases

  • Cheaper embedding memory: store 384-dimensional f32 sentence embeddings as 48-byte searchable sketches in the default profile.
  • Online semantic memory: encode vectors as they arrive, without training a codebook or recalibrating on the whole corpus.
  • Large text streams: map documents, chunks, logs, conversations, or agent traces into compact semantic tokens for cheaper storage, movement, and scan.
  • Retrieval prefilters: use compressed sketch scores as a low-cost first pass before reranking with dense vectors, text, or a stronger retrieval model.
  • Local and edge search: keep more semantic state in RAM, local disk, browser storage, or customer-controlled deployments where bandwidth and sync size matter.

Repository Scope

This repository is now focused on the Clark Hash embedding codec:

  • Stateless sparse-JL sketching and scalar quantization for dense embeddings.
  • Bit-packed database-side vectors and floating-point query sketches.
  • A simple flat compressed-scan index for evaluation and small deployments.
  • Optional fastembed integration for local text-embedding examples.
  • Reproducible sentence-similarity benchmarks and paper sources.

Model-runtime compression experiments are intentionally outside this package. The library surface here is the embedding sketch codec and its benchmark harnesses.

Why Use It

A common 384-dimensional f32 sentence embedding costs 1,536 bytes per vector. The default Clark Hash profile stores the same vector as a 48-byte cosine sketch:

Representation Bytes per vector Storage ratio
Dense f32, 384 dimensions 1,536 1.0000
Clark Hash, m = 96, b = 4 48 0.03125

That is 32x smaller, or 96.875% less vector memory, for this configuration. The quality tradeoff depends on the embedding model, sketch dimension, bit width, hash count, and retrieval workload; the benchmark section below shows measured results rather than a universal guarantee.

Clark Hash is useful when embeddings arrive continuously and you do not want a training or calibration pass before storing each vector:

  • Encode one vector at a time with a deterministic seed.
  • Store compact bit-packed sketches for hot memory, local cache, disk, or object storage.
  • Keep query vectors in floating point for asymmetric scoring.
  • Avoid corpus-specific codebooks, centroids, rotations, or learned quantization tables.
  • Use the same codec in simple flat scans, evaluation harnesses, and larger retrieval systems.

Install

From crates.io:

[dependencies]
clark-hash = "0.1"

With local text embedding support through fastembed:

[dependencies]
clark-hash = { version = "0.1", features = ["fastembed"] }

With serialization support for quantized codes:

[dependencies]
clark-hash = { version = "0.1", features = ["serde"] }

In Rust code, the crate is imported as clark_hash.

Quick Start

use clark_hash::{ClarkHash, ClarkHashConfig, FlatIndex, SimilarityMetric};

fn main() -> clark_hash::Result<()> {
    let codec = ClarkHash::new(
        ClarkHashConfig::new(384)
            .with_sketch_dim(96)
            .with_bits(4)
            .with_hashes_per_input(4)
            .with_metric(SimilarityMetric::Cosine),
    )?;

    let doc_a = vec![0.1_f32; 384];
    let doc_b = vec![0.2_f32; 384];
    let query = vec![0.15_f32; 384];

    let mut index = FlatIndex::new(codec);
    index.add_vector(&doc_a)?;
    index.add_vector(&doc_b)?;

    let hits = index.search(&query, 2)?;
    println!("{hits:#?}");

    Ok(())
}

Text Embedding Pipeline

Enable the fastembed feature when you want local text embeddings and immediate quantization in one pipeline.

use clark_hash::{ClarkHash, ClarkHashConfig, FastEmbedQuantizer, FlatIndex};
use fastembed::EmbeddingModel;

fn main() -> clark_hash::Result<()> {
    let codec = ClarkHash::new(
        ClarkHashConfig::new(384)
            .with_sketch_dim(96)
            .with_bits(4)
            .with_hashes_per_input(4),
    )?;

    let mut pipeline = FastEmbedQuantizer::new(EmbeddingModel::AllMiniLML6V2, codec)?;

    let documents = vec![
        "passage: Rust is a systems programming language.",
        "passage: Embeddings can preserve semantic similarity.",
        "passage: Quantization reduces memory usage.",
    ];

    let codes = pipeline.quantize_texts(&documents, Some(32))?;
    let query = pipeline.embed_query("query: semantic vector compression")?;
    let index = FlatIndex::from_encoded(pipeline.codec().clone(), codes)?;

    println!("{:#?}", index.search_prepared(&query, 3)?);
    Ok(())
}

Run the example:

cargo run --release --features fastembed --example fastembed_quantize

How It Works

For an input vector x in R^d, the codec:

  1. Computes the input norm.
  2. Projects the normalized vector into a lower-dimensional sparse signed JL sketch.
  3. Rescales the projected coordinates by sqrt(sketch_dim).
  4. Clips and uniformly quantizes every sketch coordinate into 1..=8 bits.
  5. Optionally stores a two-byte norm channel for raw dot-product scoring.

The database side stores a QuantizedVector. The query side uses a floating-point QuerySketch. Scoring happens in sketch space, which is a natural fit for cosine similarity over normalized sentence embeddings.

For the compact mathematical note and paper, see:

Regenerate the PDF with:

typst compile docs/CLARK_HASH_PAPER.typ docs/Clark_Hash_Paper.pdf

Configuration Guide

For common 384-dimensional sentence embeddings, start here:

ClarkHashConfig::new(384)
    .with_sketch_dim(96)
    .with_bits(4)
    .with_hashes_per_input(4)
    .with_metric(SimilarityMetric::Cosine)

Useful tuning directions:

  • sketch_dim = 64 with bits = 2 or 3 gives more aggressive compression.
  • sketch_dim = 128 with bits = 4 or 6 gives better quality.
  • SimilarityMetric::Cosine is best for normalized semantic embeddings.
  • SimilarityMetric::Dot stores a small norm channel and is better when raw inner product matters.
  • seed controls the deterministic projection, so keep it stable across indexed data.

Benchmarks

Run the core encode and scan Criterion benchmark:

cargo bench --bench throughput

Run the local text embedding plus quantization benchmark:

cargo bench --features fastembed --bench fastembed_pipeline

Run the synthetic retrieval sanity check:

cargo run --release --example quality_report

Hugging Face Sentence Similarity Benchmark

The real-text benchmark downloads multilingual sentence-similarity corpora from Hugging Face, embeds each unique sentence once, quantizes the embeddings, and compares score correlations.

Default all-MiniLM-L6-v2 run:

cargo run --release --features fastembed --example hf_sentence_similarity

Multilingual model run:

cargo run --release --features fastembed --example hf_sentence_similarity -- \
  --model ParaphraseMLMiniLML12V2 \
  --report target/hf-sts-report-paraphrase-multilingual-minilm-l12-v2.json

Fast smoke run:

cargo run --release --features fastembed --example hf_sentence_similarity -- \
  --max-pairs-per-subset 200

The benchmark currently uses:

  • mteb/sts17-crosslingual-sts
  • mteb/sts22-crosslingual-sts

It reports:

  • Dense cosine score vs. human similarity correlation.
  • Clark Hash approximate score vs. human similarity correlation.
  • Quantized score vs. dense score correlation.
  • Macro averages across language-pair subsets.

Benchmark Results

These results were produced locally on April 23, 2026 with:

  • sketch_dim = 96
  • bits = 4
  • hashes_per_input = 4
  • cosine scoring
  • 48 bytes per stored vector
  • 0.03125 compression ratio vs. dense f32

The full benchmark used 9,304 labeled sentence pairs across 29 multilingual subsets and 17,000 unique sentences.

Model Dataset Dense Spearman Sketch Spearman Sketch Loss Sketch vs Dense Pearson
all-MiniLM-L6-v2 mteb/sts17-crosslingual-sts 0.3644 0.2719 -0.0926 0.7242
all-MiniLM-L6-v2 mteb/sts22-crosslingual-sts 0.4168 0.2876 -0.1292 0.8531
paraphrase-multilingual-MiniLM-L12-v2 mteb/sts17-crosslingual-sts 0.8144 0.7460 -0.0684 0.9099
paraphrase-multilingual-MiniLM-L12-v2 mteb/sts22-crosslingual-sts 0.2973 0.2472 -0.0501 0.9460

The main readout is that model fit matters more than quantization in this test. The English-centric all-MiniLM-L6-v2 model is weak on many cross-lingual subsets. The multilingual MiniLM backbone is much stronger on STS17, and the sketch preserves a large part of that ranking signal while storing each vector in 48 bytes.

STS22 is a harder and more mixed corpus. The multilingual model is not universally better there, but the quantized sketches still track dense scores more closely than they did with the English MiniLM baseline.

Full JSON reports from the local run:

  • target/hf-sts-report.json
  • target/hf-sts-report-paraphrase-multilingual-minilm-l12-v2.json

API Overview

Core types:

  • ClarkHash / SQuaJL: stateless codec used to encode vectors, sketch queries, and score codes.
  • ClarkHashConfig / SQuaJLConfig: sketch size, bit width, hash count, clip range, seed, and metric.
  • QuantizedVector: bit-packed database-side sketch.
  • QuerySketch: floating-point query-side sketch.
  • FlatIndex: reference exact scan over compressed vectors.
  • FastEmbedQuantizer: optional text embedding and quantization pipeline.

Limitations

  • Clark Hash is a quantization library, not a full approximate-nearest-neighbor engine.
  • FlatIndex scans compressed vectors exactly and is meant for evaluation and simple deployments.
  • Quality depends on the embedding model, sketch dimension, bit width, and workload.
  • No fixed sketch dimension can preserve every future pair in an adversarial unbounded stream.
  • This package does not claim that Johnson-Lindenstrauss transforms, feature hashing, scalar quantization, or compressed retrieval are new. It documents and implements one practical stateless combination for Clark's embedding and memory workloads.

Citation

MLA:

Clark Labs Inc., Autoresearch, and Stanislav Kirdey. "Clark Hash: Stateless Sparse Johnson-Lindenstrauss Quantization for Neural Embeddings." Clark Labs Inc., 2026, GitHub, https://github.com/clark-labs-inc/clark-hash.

BibTeX:

@misc{clark_hash_2026,
  author = {{Clark Labs Inc.} and {Autoresearch} and {Stanislav Kirdey}},
  title = {Clark Hash: Stateless Sparse Johnson-Lindenstrauss Quantization for Neural Embeddings},
  year = {2026},
  publisher = {Clark Labs Inc.},
  url = {https://github.com/clark-labs-inc/clark-hash}
}

Development

cargo fmt --all -- --check
cargo clippy --all-targets --all-features -- -D warnings
cargo test --all-features
cargo bench --bench throughput --no-run

The fastembed benchmark and examples may download models on first use.

License

Licensed under either of:

  • Apache License, Version 2.0
  • MIT license

at your option.