Synthetic multi-domain dataset generator for record linkage benchmarking — Educational Use Only
Project description
Synthetic data generator for record linkage benchmarking.
Rust + Python — 40 domains, 500K+ rec/s, 113 tests.
Generate synthetic multi-entity datasets with realistic schemas, controlled duplicates, hard negatives, and ground-truth labels. Designed for benchmarking entity resolution (deduplication) and record linkage pipelines.
Quick start
Python (pip)
pip install dupehell
from dupehell import generate
r = generate(domain="publishing", size=10000, seed=42, difficulty="hard")
print(r.dataset) # ./publishing_<hash>.ipc
print(r.ground_truth) # ./publishing_<hash>_ground_truth.ipc
print(r.total_records) # ~10150
CLI (Rust)
cargo run --release -- --domain kyc --size 100000 --seed 42
Output
| Format | Extension | Notes |
|---|---|---|
| IPC (Arrow) | .ipc |
Default, fastest write |
| Parquet | .parquet |
Via --parquet flag |
Each run produces:
{domain}_{hash}.ipc— main dataset{domain}_{hash}_ground_truth.ipc— ground-truth labels
CLI options
| Option | Default | Description |
|---|---|---|
--domain |
kyc |
Domain name |
--size |
1000000 |
Base records |
--seed |
42 |
PRNG seed |
--difficulty |
medium |
light / medium / hard / hell |
--output-format |
ipc |
ipc or parquet |
--output-dir |
. |
Output directory |
Features
- 40 domains — KYC, publishing, fintech, blockchain, technology, banking, healthcare, ecommerce, automotive, cybersecurity, gaming, and 30 more
- Multi-entity schemas — 3–5 entity types per domain (person, account, address, transaction)
- Controlled noise — typos, OCR errors, homoglyphs, date swaps, phonetic variants, Unicode pollution
- Hard negatives —
same_field,mix_identifier,mix_arraysprimitives - Ground truth — full match labels (exact_dup, hard_neg, singleton) with cluster statistics
- Deterministic — seeded RNG (
rand_pcg) for reproducible output
Performance
All runs on Lenovo ThinkPad P16 Gen 2 — Intel Core i7 13th, 32 GB DDR5, SK Hynix 1 TB NVMe. Difficulty hell, IPC format. Throughput averaged across all 40 domains.
Multi-domain throughput (hell, IPC)
| Size | Ø rec/s | Fastest domain | Slowest domain | Range |
|---|---|---|---|---|
| 1M | 280,175 | academia 3.2s | supplychain 4.5s | 1.3s |
| 5M | 632,487 | aviation 6.8s | crm 10.5s | 3.7s |
| 10M | 677,579 | academia 11.8s | manufacturing 23.6s | 11.8s |
| 20M | 746,520 | academia 21.6s | kyc 34.6s | 13.0s |
IPC vs Parquet
Difficulty hell, domain-average throughput.
| Size | IPC | Parquet |
|---|---|---|
| 1M | 280.2K rec/s | 228.6K rec/s |
| 5M | 632.5K rec/s | 445.5K rec/s |
| 10M | 677.6K rec/s | 456.1K rec/s |
| 20M | 746.5K rec/s | — |
See docs/BENCHMARK.md for KYC medium-difficulty single-domain metrics and full per-domain breakdowns at all sizes.
Architecture
lib.rs / main.rs → Context (133 pools) → PipelineConfig → run_pipeline()
│
┌────────────────────────────────────────────────┼────────────────────┐
▼ ▼ ▼
entity_gen.rs fk_remap.rs hn_common.rs
(batch gen) (FK cross-ref) (hard negatives)
│ │ │
└────────────────────────────────────────────────┴────────────────────┘
▼
pipeline.rs
(merge + GT + IPC write)
▼
{domain}.ipc + GT.ipc
Documentation
| File | Description |
|---|---|
| docs/GETTING_STARTED.md | Installation, quick start, output formats |
| docs/API.md | Full Python & Rust API reference |
| docs/CONTRIBUTING.md | Architecture, development workflow |
| docs/BENCHMARK.md | Performance metrics (up to 75M records) |
| docs/SECURITY.md | Security policy & vulnerability reporting |
Domains
Academia · Agriculture · Automotive · Aviation · Banking · Biotech · Blockchain · Construction · CRM · Cybersecurity · Ecommerce · Education · Energy · Fashion · Fintech · Food & Beverage · Gaming · Healthcare · Hospitality · HR · Insurance · KYC · Legal · Logistics · Manufacturing · Maritime · Media · Mining · Nonprofit · Pharma · Publishing · Real Estate · Renewable Energy · Retail · Social Media · Sports · Supply Chain · Technology · Telecom · Travel
Roadmap
- Graph generation — model entity relationships as property graphs (nodes, edges, attributes) for graph-based entity resolution and community detection benchmarking
- Synthetic identity module — generate realistic digital identities (browser fingerprints, device profiles, network patterns) for cybersecurity simulation and threat detection research
- Performance — continue pushing throughput via smarter batching, column-level parallelism, and reduced allocations
Development
cargo test # 113 tests, ~30s
cargo build --release
cargo clippy # 0 warnings
cargo fmt --check # all formatted
Python wheel
pip install maturin
maturin build --release
pip install target/wheels/dupehell-*.whl
License
MIT — Educational Use Only.
This software generates synthetic data for research and educational purposes only. It must not be used for fraud, identity theft, surveillance, or any illegal activity. See ETHICS.md for the full list of prohibited uses and responsible disclosure policy.
If you use DupeHell in your research, please cite:
@software{dupehell2026,
author = {DupeHell Contributors},
title = {DupeHell: Synthetic Multi-Domain Dataset Generator for
Record Linkage Benchmarking},
year = {2026},
url = {https://github.com/vntoinekaio/DupeHell}
}
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distributions
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 dupehell-0.4.1-cp310-abi3-win_amd64.whl.
File metadata
- Download URL: dupehell-0.4.1-cp310-abi3-win_amd64.whl
- Upload date:
- Size: 3.5 MB
- Tags: CPython 3.10+, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.14.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9b19c8140aebad2723bf4f16ffe098f5279ee1a169a63f42d4f62d7bf0fbd3d0
|
|
| MD5 |
9b7d1d8dad564f12e47cdc804537d9bc
|
|
| BLAKE2b-256 |
a11d40f92eeac0e422413e2624d95d8cce5fa41559e1facfc400f2d6d85ecfe9
|
File details
Details for the file dupehell-0.4.1-cp310-abi3-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: dupehell-0.4.1-cp310-abi3-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 3.6 MB
- Tags: CPython 3.10+, manylinux: glibc 2.34+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.14.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
81f643434fae0d8923e21f93152be10b0f997499764d13120fd62056bd0fa4fe
|
|
| MD5 |
e3adf45e3e54bd08c5b55672243bc493
|
|
| BLAKE2b-256 |
cde5846d870606b59860d1625fd74ccdc700db6417f93540d507ddfc338346de
|
File details
Details for the file dupehell-0.4.1-cp310-abi3-macosx_11_0_arm64.whl.
File metadata
- Download URL: dupehell-0.4.1-cp310-abi3-macosx_11_0_arm64.whl
- Upload date:
- Size: 3.2 MB
- Tags: CPython 3.10+, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.14.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fc9e0795f33e9afa36bf58e0a08c6e5ddd61fc058f949592d11f32d3508f9bf4
|
|
| MD5 |
017a28f54bb960d0b73ba7c6b9d8b14e
|
|
| BLAKE2b-256 |
ae6dbd6a2790956c44ef5ecccffa21e55df4745b023625fa109a5f9311da4db6
|