pub struct MultiFittedLogisticRegression<F, C: PartialOrd + Clone> { /* private fields */ }
Expand description
A fitted multinomial logistic regression which can make predictions
Implementations§
Source§impl<F: Float, C: PartialOrd + Clone> MultiFittedLogisticRegression<F, C>
impl<F: Float, C: PartialOrd + Clone> MultiFittedLogisticRegression<F, C>
Trait Implementations§
Source§impl<F: Clone, C: Clone + PartialOrd + Clone> Clone for MultiFittedLogisticRegression<F, C>
impl<F: Clone, C: Clone + PartialOrd + Clone> Clone for MultiFittedLogisticRegression<F, C>
Source§fn clone(&self) -> MultiFittedLogisticRegression<F, C>
fn clone(&self) -> MultiFittedLogisticRegression<F, C>
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, C: Debug + PartialOrd + Clone> Debug for MultiFittedLogisticRegression<F, C>
impl<F: Debug, C: Debug + PartialOrd + Clone> Debug for MultiFittedLogisticRegression<F, C>
Source§impl<F: PartialEq, C: PartialEq + PartialOrd + Clone> PartialEq for MultiFittedLogisticRegression<F, C>
impl<F: PartialEq, C: PartialEq + PartialOrd + Clone> PartialEq for MultiFittedLogisticRegression<F, C>
Source§fn eq(&self, other: &MultiFittedLogisticRegression<F, C>) -> bool
fn eq(&self, other: &MultiFittedLogisticRegression<F, C>) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl<C: PartialOrd + Clone + Default, F: Float, D: Data<Elem = F>> PredictInplace<ArrayBase<D, Dim<[usize; 2]>>, ArrayBase<OwnedRepr<C>, Dim<[usize; 1]>>> for MultiFittedLogisticRegression<F, C>
impl<C: PartialOrd + Clone + Default, F: Float, D: Data<Elem = F>> PredictInplace<ArrayBase<D, Dim<[usize; 2]>>, ArrayBase<OwnedRepr<C>, Dim<[usize; 1]>>> for MultiFittedLogisticRegression<F, C>
impl<F: Eq, C: Eq + PartialOrd + Clone> Eq for MultiFittedLogisticRegression<F, C>
impl<F, C: PartialOrd + Clone> StructuralPartialEq for MultiFittedLogisticRegression<F, C>
Auto Trait Implementations§
impl<F, C> Freeze for MultiFittedLogisticRegression<F, C>
impl<F, C> RefUnwindSafe for MultiFittedLogisticRegression<F, C>where
F: RefUnwindSafe,
C: RefUnwindSafe,
impl<F, C> Send for MultiFittedLogisticRegression<F, C>
impl<F, C> Sync for MultiFittedLogisticRegression<F, C>
impl<F, C> Unpin for MultiFittedLogisticRegression<F, C>where
C: Unpin,
impl<F, C> UnwindSafe for MultiFittedLogisticRegression<F, C>where
F: RefUnwindSafe,
C: 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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.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