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

Fitted Gaussian Naive Bayes classifier

See GaussianNbParams for more information on the hyper-parameters.

Model assumptions

The family of naive bayes classifiers assume independence between variables. They do not model moments between variables and lack therefore in modelling capability. The advantage is a linear fitting time with maximum-likelihood training in a closed form.

Model estimation

You can fit a single model from a dataset

use linfa::traits::Fit;
let model = GaussianNb::params().fit(&ds)?;

or incrementally update a model

use linfa::traits::FitWith;
let clf = GaussianNb::params();
let model = datasets.iter()
    .try_fold(None, |prev_model, &ds| clf.fit_with(prev_model, ds))?
    .unwrap();

After fitting the model, you can use the Predict variants to predict new targets.

Implementations

Construct a new set of hyperparameters

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Predict something in place

Create targets that predict_inplace works with.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

The resulting type after obtaining ownership.

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

🔬 This is a nightly-only experimental API. (toowned_clone_into)

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.