[][src]Struct smartcore::naive_bayes::multinomial::MultinomialNBParameters

pub struct MultinomialNBParameters<T: RealNumber> {
    pub alpha: T,
    pub priors: Option<Vec<T>>,
}

MultinomialNB parameters. Use Default::default() for default values.

Fields

alpha: T

Additive (Laplace/Lidstone) smoothing parameter (0 for no smoothing).

priors: Option<Vec<T>>

Prior probabilities of the classes. If specified the priors are not adjusted according to the data

Implementations

impl<T: RealNumber> MultinomialNBParameters<T>[src]

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

Additive (Laplace/Lidstone) smoothing parameter (0 for no smoothing).

pub fn with_priors(self, priors: Vec<T>) -> Self[src]

Prior probabilities of the classes. If specified the priors are not adjusted according to the data

Trait Implementations

impl<T: Clone + RealNumber> Clone for MultinomialNBParameters<T>[src]

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

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

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

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

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

Auto Trait Implementations

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

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

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

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

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