zer-cluster 1.0.1

Connected-components clustering and entity storage for the zer entity-resolution library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Connected-components clustering and entity storage for resolved groups.

mod clusterer;
mod graph;
mod provenance;
mod threshold;
mod store;

pub use clusterer::ConnectedComponentsClusterer;
pub use graph::{ClusterConfig, ClusterGraph};
pub use provenance::ResolutionEvent;
pub use store::ZalEntityStore;
pub use threshold::{partition_by_band, BandedPairs};