pub struct MultinomialNbParams<F, L>(/* private fields */);
Expand description

A hyper-parameter set during construction for a Multinomial Naive Bayes model.

The parameter set can be verified into a MultinomialNbValidParams by calling ParamGuard::check. It is also possible to directly fit a model with Fit::fit or FitWith::fit_with which implicitely verifies the parameter set prior to the model estimation and forwards any error.

See MultinomialNb for information on the model.

Parameters

NameDefaultPurposeRange
alpha1Additive (Laplace/Lidstone) smoothing parameter (0 for no smoothing)[0, inf)

Errors

The following errors can come from invalid hyper-parameters:

Returns InvalidSmoothing if the smoothing parameter is negative.

Implementations§

source§

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

source

pub fn new() -> Self

Create new MultinomialNbParams set with default values for its parameters

source

pub fn alpha(self, alpha: F) -> Self

Specifies the portion of the largest variance of all the features that is added to the variance for calculation stability

Trait Implementations§

source§

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

source§

fn clone(&self) -> MultinomialNbParams<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 MultinomialNbParams<F, L>

source§

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

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

impl<F: Float, L> Default for MultinomialNbParams<F, L>

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<F: Float, L> ParamGuard for MultinomialNbParams<F, L>

§

type Checked = MultinomialNbValidParams<F, L>

The checked hyperparameters
§

type Error = NaiveBayesError

Error type resulting from failed hyperparameter checking
source§

fn check_ref(&self) -> Result<&Self::Checked, Self::Error>

Checks the hyperparameters and returns a reference to the checked hyperparameters if successful
source§

fn check(self) -> Result<Self::Checked, Self::Error>

Checks the hyperparameters and returns the checked hyperparameters if successful
source§

fn check_unwrap(self) -> Self::Checkedwhere Self: Sized,

Calls check() and unwraps the result
source§

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

source§

fn eq(&self, other: &MultinomialNbParams<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 MultinomialNbParams<F, L>

source§

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

source§

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

Auto Trait Implementations§

§

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

§

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

§

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

§

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

§

impl<F, L> UnwindSafe for MultinomialNbParams<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