[][src]Struct smartcore::linear::elastic_net::ElasticNetParameters

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

Elastic net parameters

Fields

alpha: T

Regularization parameter.

l1_ratio: T

The elastic net mixing parameter, with 0 <= l1_ratio <= 1. For l1_ratio = 0 the penalty is an L2 penalty. For l1_ratio = 1 it is an L1 penalty. For 0 < l1_ratio < 1, the penalty is a combination of L1 and L2.

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> ElasticNetParameters<T>[src]

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

Regularization parameter.

pub fn with_l1_ratio(self, l1_ratio: T) -> Self[src]

The elastic net mixing parameter, with 0 <= l1_ratio <= 1. For l1_ratio = 0 the penalty is an L2 penalty. For l1_ratio = 1 it is an L1 penalty. For 0 < l1_ratio < 1, the penalty is a combination of L1 and L2.

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 ElasticNetParameters<T>[src]

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

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

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

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

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

Auto Trait Implementations

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

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

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

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

impl<T> UnwindSafe for ElasticNetParameters<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>,