scirs2-stats 0.4.1

Statistical functions module for SciRS2 (scirs2-stats)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Online Bayesian inference methods for scirs2-stats.
//!
//! This module provides:
//!
//! - **Online Variational Bayes** ([`OnlineVb`]): stochastic natural-gradient
//!   updates for conjugate exponential-family models, with an LDA-style topic
//!   model specialisation (Hoffman et al. 2010).
//! - **Streaming Gaussian Process** ([`StreamingGp`]): rank-1 Kalman-style
//!   updates with a sparse inducing-point budget (Csató & Opper 2002 style).

pub mod online_vb;
pub mod streaming_gp;

pub use online_vb::{OnlineVb, OnlineVbConfig};
pub use streaming_gp::{StreamingGp, StreamingGpConfig};