Project that uses theory of From Word Embeddings To Document Distances / Optimal Transport to give meaningful distance from one document to another, useful if building agentic projects that convert or extract information from one document to another using frontier models but without the ability to calculate KL divergence from logits
Project description
docdistance
Semantic distance between two documents via Statement Mover's Distance - optimal transport over mmBERT statement embeddings, after Kusner et al. 2015 (From Word Embeddings To Document Distances). A thin frontend to the library; the SOTA docs carry the mechanics, benchmarks, and validation.
- Input - two documents, raw text or a file path
- Output - an SMD distance, a 0..1 closeness, a verdict, and the statement alignment
- Use - agentic document conversion and extraction pipelines, where token logits are unavailable and KL divergence cannot be computed
- Unit - statement-level and position-invariant, with an interpretable transport plan
Theory
A document distance grounded in embeddings and optimal transport, not surface overlap.
- WMD - Word Mover's Distance (Kusner et al. 2015) casts document similarity as optimal transport between embedded tokens
- SMD - this project lifts it to statements: segment, embed, transport between the two statement clouds
- Beyond cosine - whole-document cosine collapses when the same claims sit in a different place or order; statement-level transport is position-invariant
- Metric - the ground cost
√(2 − 2cos)on L2-normalized embeddings is a metric, so the document distance is one too - Logit-free - an embedding-grounded alternative where token probabilities (KL divergence) are unavailable, as in frontier-model pipelines
Method
Three stages; the transport plan is the interpretable by-product.
- Segment - split each document into atomic statements with the SAT (Segment Any Text) segmenter
- Embed - encode each statement with the mmBERT contextual encoder (mean-pooled, L2-normalized)
- Compare - optimal transport between the two statement clouds (Statement Mover's Distance), optionally unbalanced so added or missing statements are scored, not force-matched
- Closeness -
1 − SMD/√2, on a 0..1 scale - Source-conditioned - a variant
d(A, B | S)re-bases the transport onto a shared sourceSand reads off a selection axis and a grounding axis
Usage
The library is the product; install once, then call it.
from docdistance import document_distance
result = document_distance("report_v1.md", "report_v2.md")
print(result.closeness) # 0..1 similarity, 1 - SMD/sqrt(2)
print(result.verdict) # "similar" | "not similar"
make install # environment, package, Jupyter kernel
docdistance install # download + cache the models (once)
docdistance distance a.md b.md # rich, coloured verdict
docdistance distance a.md b.md --json # machine-readable JSON
- Offline after install - distance calls run fully offline once the models are cached
- Backend -
--backend openvino|torch, defaultopenvino(CPU INT8) - Full API and flags -
docdistance --helpand the SOTA docs
Documentation
The SOTA documents explain how it works in detail; this README only introduces it.
docs/wmd-docdistance-solution-sota.md- source-free distance: design, mechanism, performance, validationdocs/wmd-wrt-source-docdistance-solution.md- source-conditioned distanced(A,B|S)docs/mmbert-quantization-solution.md- the INT8 / FP8 statement encoderreferences/papers/from-word-embeddings-to-document-distances.md- WMD paper digest (Kusner et al. 2015)
Note: Scaffolded with the copier-data-science template.
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 docdistance-1.0.15.tar.gz.
File metadata
- Download URL: docdistance-1.0.15.tar.gz
- Upload date:
- Size: 18.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
48e1d361c2148ab4b3e32383c5fa4e6cb2caac9e9506541b93153f450277cba4
|
|
| MD5 |
2f2d5408d56edbc7ff32942582cdb6bf
|
|
| BLAKE2b-256 |
9fba0f78e902ad0eb160674aebb6e0d4e82219685c266f142aea858245261e48
|
File details
Details for the file docdistance-1.0.15-py3-none-any.whl.
File metadata
- Download URL: docdistance-1.0.15-py3-none-any.whl
- Upload date:
- Size: 19.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6a5274a7f6bc600183a9d539d5a11cc88fa1807501d63b81c4cdbdbea63cae62
|
|
| MD5 |
c53200686f5677006d7d44a4b725e413
|
|
| BLAKE2b-256 |
6368e7ce3d19cdb606516b7bd62c772cbdb05ea481be20b7e35c4bb40606857b
|