[][src]Struct friedrich::prior::LinearPrior

pub struct LinearPrior { /* fields omitted */ }

The Linear prior

This prior is a linear function which can be fit on the training data.

Methods

impl LinearPrior[src]

pub fn new(weights: DVector<f64>, intercept: f64) -> Self[src]

Constructs a new linear prior the first row of w is the bias such that prior = [1|input] * w

Trait Implementations

impl Prior for LinearPrior[src]

fn fit<SM: Storage<f64, Dynamic, Dynamic> + Clone, SV: Storage<f64, Dynamic, U1>>(
    &mut self,
    training_inputs: &Matrix<f64, Dynamic, Dynamic, SM>,
    training_outputs: &Matrix<f64, Dynamic, U1, SV>
)
[src]

performs a linear fit to set the value of the prior

impl Clone for LinearPrior[src]

impl Debug for LinearPrior[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,