scirs2-stats 0.4.2

Statistical functions module for SciRS2 (scirs2-stats)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! 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 mod beta_process;
pub mod dirichlet_process;
pub mod gaussian_process_nonparam;
pub mod indian_buffet;

pub use beta_process::BetaProcess;
pub use dirichlet_process::{CRPSampler, DPMixture, StickBreaking};
pub use indian_buffet::{IBPSampler, IndianBuffetProcess};