[][src]Struct smartcore::linear::lasso::LassoParameters

pub struct LassoParameters<T: RealNumber> {
    pub alpha: T,
    pub normalize: bool,
    pub tol: T,
    pub max_iter: usize,
}

Lasso regression parameters

Fields

alpha: T

Controls the strength of the penalty to the loss function.

normalize: bool

If true the regressors X will be normalized before regression by subtracting the mean and dividing by the standard deviation.

tol: T

The tolerance for the optimization

max_iter: usize

The maximum number of iterations

Implementations

impl<T: RealNumber> LassoParameters<T>[src]

pub fn with_alpha(self, alpha: T) -> Self[src]

Regularization parameter.

pub fn with_normalize(self, normalize: bool) -> Self[src]

If True, the regressors X will be normalized before regression by subtracting the mean and dividing by the standard deviation.

pub fn with_tol(self, tol: T) -> Self[src]

The tolerance for the optimization

pub fn with_max_iter(self, max_iter: usize) -> Self[src]

The maximum number of iterations

Trait Implementations

impl<T: Clone + RealNumber> Clone for LassoParameters<T>[src]

impl<T: Debug + RealNumber> Debug for LassoParameters<T>[src]

impl<T: RealNumber> Default for LassoParameters<T>[src]

impl<'de, T: RealNumber> Deserialize<'de> for LassoParameters<T> where
    T: Deserialize<'de>, 
[src]

impl<T: RealNumber> Serialize for LassoParameters<T> where
    T: Serialize
[src]

impl<T: RealNumber, M: Matrix<T>> SupervisedEstimator<M, <M as BaseMatrix<T>>::RowVector, LassoParameters<T>> for Lasso<T, M>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for LassoParameters<T> where
    T: RefUnwindSafe
[src]

impl<T> Send for LassoParameters<T> where
    T: Send
[src]

impl<T> Sync for LassoParameters<T> where
    T: Sync
[src]

impl<T> Unpin for LassoParameters<T> where
    T: Unpin
[src]

impl<T> UnwindSafe for LassoParameters<T> where
    T: UnwindSafe
[src]

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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