qualia_core_db/solvers/learning/graphical_models/mod.rs
1//! Probabilistic graphical models (PRML ch 8) — relational inference over discrete
2//! variables. The governance topology is relational and lives in the edges, so a
3//! factor graph with belief propagation is the native inference for it.
4//!
5//! - [`factor_graph`] — discrete factor graph + sum-product belief propagation.
6
7pub mod factor_graph;
8
9pub use factor_graph::{Factor, FactorGraph};