pub struct TweedieRegressorValidParams<F> { /* private fields */ }
Expand description
The set of hyperparameters that can be specified for the execution of the Tweedie Regressor.
Implementations§
Trait Implementations§
Source§impl<F: Clone> Clone for TweedieRegressorValidParams<F>
impl<F: Clone> Clone for TweedieRegressorValidParams<F>
Source§fn clone(&self) -> TweedieRegressorValidParams<F>
fn clone(&self) -> TweedieRegressorValidParams<F>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<F: Debug> Debug for TweedieRegressorValidParams<F>
impl<F: Debug> Debug for TweedieRegressorValidParams<F>
Source§impl<F, D: Data<Elem = F>, T: AsSingleTargets<Elem = F>> Fit<ArrayBase<D, Dim<[usize; 2]>>, T, LinearError<F>> for TweedieRegressorValidParams<F>where
Array1<F>: ArgminAdd<Array1<F>, Array1<F>> + ArgminSub<Array1<F>, Array1<F>> + ArgminSub<F, Array1<F>> + ArgminAdd<F, Array1<F>> + ArgminMul<F, Array1<F>> + ArgminMul<Array1<F>, Array1<F>> + ArgminDot<Array1<F>, F> + ArgminL2Norm<F> + ArgminL1Norm<F> + ArgminSignum + ArgminMinMax,
F: ArgminMul<Array1<F>, Array1<F>> + ArgminZero + Float,
impl<F, D: Data<Elem = F>, T: AsSingleTargets<Elem = F>> Fit<ArrayBase<D, Dim<[usize; 2]>>, T, LinearError<F>> for TweedieRegressorValidParams<F>where
Array1<F>: ArgminAdd<Array1<F>, Array1<F>> + ArgminSub<Array1<F>, Array1<F>> + ArgminSub<F, Array1<F>> + ArgminAdd<F, Array1<F>> + ArgminMul<F, Array1<F>> + ArgminMul<Array1<F>, Array1<F>> + ArgminDot<Array1<F>, F> + ArgminL2Norm<F> + ArgminL1Norm<F> + ArgminSignum + ArgminMinMax,
F: ArgminMul<Array1<F>, Array1<F>> + ArgminZero + Float,
Source§impl<F: PartialEq> PartialEq for TweedieRegressorValidParams<F>
impl<F: PartialEq> PartialEq for TweedieRegressorValidParams<F>
Source§fn eq(&self, other: &TweedieRegressorValidParams<F>) -> bool
fn eq(&self, other: &TweedieRegressorValidParams<F>) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl<F> StructuralPartialEq for TweedieRegressorValidParams<F>
Auto Trait Implementations§
impl<F> Freeze for TweedieRegressorValidParams<F>where
F: Freeze,
impl<F> RefUnwindSafe for TweedieRegressorValidParams<F>where
F: RefUnwindSafe,
impl<F> Send for TweedieRegressorValidParams<F>where
F: Send,
impl<F> Sync for TweedieRegressorValidParams<F>where
F: Sync,
impl<F> Unpin for TweedieRegressorValidParams<F>where
F: Unpin,
impl<F> UnwindSafe for TweedieRegressorValidParams<F>where
F: UnwindSafe,
Blanket Implementations§
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,
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