pelinker.clustering_fit¶
Shared PCA/UMAP + HDBSCAN manifold clustering for model selection and Linker.fit.
ManifoldClusteringFitResult
dataclass
¶
Full manifold clustering: transformer + HDBSCAN on the same mention rows.
Source code in pelinker/clustering_fit.py
ManifoldHdbscanFitResult
dataclass
¶
HDBSCAN fit on UMAP clustering coordinates.
Source code in pelinker/clustering_fit.py
ManifoldTransformerFitResult
dataclass
¶
PCA + UMAP transformer fit on a KB manifold mention frame.
Source code in pelinker/clustering_fit.py
fit_hdbscan_on_umap(umap_clustering, manifold_df, min_cluster_size, *, prediction_data=False)
¶
Run HDBSCAN on precomputed UMAP clustering coordinates.
Source code in pelinker/clustering_fit.py
fit_manifold_clustering(manifold_df, *, transform_config, min_cluster_size, prediction_data=False)
¶
Fit PCA/UMAP + HDBSCAN on the same KB manifold mention frame.
Source code in pelinker/clustering_fit.py
fit_transformer_artifacts_on_manifold(manifold_df, transform_config)
¶
Fit transformer and return :class:~pelinker.transform.TransformArtifacts with UMAP.
Source code in pelinker/clustering_fit.py
fit_transformer_on_manifold(manifold_df, transform_config)
¶
Fit PCA + UMAP on KB-only mention rows (no HDBSCAN).