sphereql_embed/lib.rs
1//! Vector embedding projection engine.
2//!
3//! Projects high-dimensional embeddings onto S² via PCA, kernel PCA,
4//! or random projection, then provides a query pipeline for k-NN search,
5//! similarity thresholds, concept paths, glob detection, local manifold
6//! fitting, and category-level enrichment (inter-category graph, bridge
7//! detection, hierarchical concept paths).
8
9pub mod category;
10pub mod kernel_pca;
11pub mod mapper;
12pub mod pipeline;
13pub mod projection;
14pub mod query;
15pub mod types;
16
17pub use category::*;
18pub use kernel_pca::*;
19pub use mapper::*;
20pub use pipeline::*;
21pub use projection::*;
22pub use query::*;
23pub use types::*;