//! Nonparametric Bayesian models.
//!
//! This module provides:
//! - **Dirichlet Process**: CRP, stick-breaking, DP mixture models
//! - **Indian Buffet Process**: sparse latent feature allocation
//! - **Beta Process**: hazard process for survival and feature models
//! - **Gaussian Process (nonparametric)**: GP regression with MCMC hyperparameter marginalization
pub use BetaProcess;
pub use ;
pub use ;