[][src]Struct linfa_linear::ols::FittedLinearRegression

pub struct FittedLinearRegression<A> { /* fields omitted */ }

A fitted linear regression model which can be used for making predictions.

Implementations

impl<A: Scalar + ScalarOperand> FittedLinearRegression<A>[src]

View the fitted parameters and make predictions with a fitted linear regresssion model.

pub fn predict(&self, X: &Array2<A>) -> Array1<A>[src]

Given an input matrix X, with shape (n_samples, n_features), predict returns the target variable according to linear model learned from the training data distribution.

pub fn params(&self) -> &Array1<A>[src]

Get the fitted parameters

pub fn intercept(&self) -> A[src]

Get the fitted intercept, 0. if no intercept was fitted

Auto Trait Implementations

impl<A> RefUnwindSafe for FittedLinearRegression<A> where
    A: RefUnwindSafe

impl<A> Send for FittedLinearRegression<A> where
    A: Send

impl<A> Sync for FittedLinearRegression<A> where
    A: Sync

impl<A> Unpin for FittedLinearRegression<A> where
    A: Unpin

impl<A> UnwindSafe for FittedLinearRegression<A> where
    A: RefUnwindSafe + UnwindSafe

Blanket Implementations

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

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

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

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

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

impl<T> SendSyncUnwindSafe for T where
    T: Send + Sync + UnwindSafe + ?Sized

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<V, T> VZip<V> for T where
    V: MultiLane<T>,