zer-pipeline 1.1.0

End-to-end entity resolution pipeline: ingestion, blocking, comparison, scoring, and clustering
Documentation
//! End-to-end entity resolution pipeline: ingestion, blocking, comparison, scoring, and clustering.
//!
//! # Feature flags
//!
//! | Flag             | Description                                                                     |
//! |------------------|---------------------------------------------------------------------------------|
//! | `collect-pairs`  | Collect all scored pairs after judging for PR-AUC / optimal-threshold analysis. Incurs allocation cost proportional to candidate pair count; disable in production. |

pub mod batch;
pub mod cluster_view;
pub mod config;
pub mod ingester;
pub mod pipeline;
pub mod progress;
pub mod rate;

pub use batch::BatchReport;
pub use cluster_view::{ClusterIter, ClusterView, LinkedPair};
pub use config::{LinkMode, PipelineConfig, RateConfig};
pub use ingester::{IngestResult, Ingester};
pub use pipeline::{label_source, Pipeline, PipelineBuilder};
pub use progress::PipelineEvent;