pub struct BayesianLinear {
pub mean: Vec<f64>,
pub cov: Vec<f64>,
pub beta: f64,
pub fit_intercept: bool,
pub p: usize,
}Expand description
A fitted Bayesian linear model: the posterior over weights (mean = m_N,
cov = S_N) and the noise precision beta.
Fields§
§mean: Vec<f64>§cov: Vec<f64>§beta: f64§fit_intercept: bool§p: usizeImplementations§
Source§impl BayesianLinear
impl BayesianLinear
Sourcepub fn fit(
x: &[f64],
y: &[f64],
n: usize,
p: usize,
alpha: f64,
beta: f64,
fit_intercept: bool,
) -> Result<Self, LearningError>
pub fn fit( x: &[f64], y: &[f64], n: usize, p: usize, alpha: f64, beta: f64, fit_intercept: bool, ) -> Result<Self, LearningError>
Fit with prior precision alpha (> 0) and noise precision beta (> 0).
Fails closed on shape mismatch / non-positive hyper-parameters.
Sourcepub fn predict_row(&self, x_row: &[f64]) -> (f64, f64)
pub fn predict_row(&self, x_row: &[f64]) -> (f64, f64)
Predictive distribution at one row: (mean, variance).
variance = 1/β + φᵀ S_N φ — the noise floor plus the model uncertainty,
which grows away from the training data.
Trait Implementations§
Source§impl Clone for BayesianLinear
impl Clone for BayesianLinear
Source§fn clone(&self) -> BayesianLinear
fn clone(&self) -> BayesianLinear
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for BayesianLinear
impl RefUnwindSafe for BayesianLinear
impl Send for BayesianLinear
impl Sync for BayesianLinear
impl Unpin for BayesianLinear
impl UnsafeUnpin for BayesianLinear
impl UnwindSafe for BayesianLinear
Blanket Implementations§
§impl<S, A> Aggregate<Result<S, Error>> for Awhere
A: Aggregate<S>,
impl<S, A> Aggregate<Result<S, Error>> for Awhere
A: Aggregate<S>,
Aggregate shares in an MPC protocol.
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more