pub struct MultinomialNbValidParams<F, L> { /* private fields */ }
Expand description

A verified hyper-parameter set ready for the estimation of a Multinomial Naive Bayes model.

See MultinomialNb for information on the model and MultinomialNbParams for information on hyperparameters.

Implementations§

source§

impl<F: Float, L> MultinomialNbValidParams<F, L>

source

pub fn alpha(&self) -> F

Get the variance smoothing

Trait Implementations§

source§

impl<F: Clone, L: Clone> Clone for MultinomialNbValidParams<F, L>

source§

fn clone(&self) -> MultinomialNbValidParams<F, L>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<F: Debug, L: Debug> Debug for MultinomialNbValidParams<F, L>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<F, L, D, T> Fit<ArrayBase<D, Dim<[usize; 2]>>, T, NaiveBayesError> for MultinomialNbValidParams<F, L>where F: Float, L: Label + Ord, D: Data<Elem = F>, T: AsSingleTargets<Elem = L> + Labels<Elem = L>,

§

type Object = MultinomialNb<F, L>

source§

fn fit( &self, dataset: &DatasetBase<ArrayBase<D, Ix2>, T> ) -> Result<Self::Object>

source§

impl<'a, F, L, D, T> FitWith<'a, ArrayBase<D, Dim<[usize; 2]>>, T, NaiveBayesError> for MultinomialNbValidParams<F, L>where F: Float, L: Label + 'a, D: Data<Elem = F>, T: AsSingleTargets<Elem = L> + Labels<Elem = L>,

§

type ObjectIn = Option<MultinomialNb<F, L>>

§

type ObjectOut = Option<MultinomialNb<F, L>>

source§

fn fit_with( &self, model_in: Self::ObjectIn, dataset: &DatasetBase<ArrayBase<D, Ix2>, T> ) -> Result<Self::ObjectOut>

source§

impl<F: PartialEq, L: PartialEq> PartialEq for MultinomialNbValidParams<F, L>

source§

fn eq(&self, other: &MultinomialNbValidParams<F, L>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<F: Eq, L: Eq> Eq for MultinomialNbValidParams<F, L>

source§

impl<F, L> StructuralEq for MultinomialNbValidParams<F, L>

source§

impl<F, L> StructuralPartialEq for MultinomialNbValidParams<F, L>

Auto Trait Implementations§

§

impl<F, L> RefUnwindSafe for MultinomialNbValidParams<F, L>where F: RefUnwindSafe, L: RefUnwindSafe,

§

impl<F, L> Send for MultinomialNbValidParams<F, L>where F: Send, L: Send,

§

impl<F, L> Sync for MultinomialNbValidParams<F, L>where F: Sync, L: Sync,

§

impl<F, L> Unpin for MultinomialNbValidParams<F, L>where F: Unpin, L: Unpin,

§

impl<F, L> UnwindSafe for MultinomialNbValidParams<F, L>where F: UnwindSafe, L: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V