pub struct GaussianNb<F: PartialEq, L: Eq + Hash> { /* 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 usage example

The example below creates a set of hyperparameters, and then uses it to fit a Gaussian Naive Bayes classifier on provided data.

use linfa_bayes::{GaussianNbParams, GaussianNbValidParams, Result};
use linfa::prelude::*;
use ndarray::array;

let x = array![
    [-2., -1.],
    [-1., -1.],
    [-1., -2.],
    [1., 1.],
    [1., 2.],
    [2., 1.]
];
let y = array![1, 1, 1, 2, 2, 2];
let ds = DatasetView::new(x.view(), y.view());

// create a new parameter set with variance smoothing equals `1e-5`
let unchecked_params = GaussianNbParams::new()
    .var_smoothing(1e-5);

// fit model with unchecked parameter set
let model = unchecked_params.fit(&ds)?;

// transform into a verified parameter set
let checked_params = unchecked_params.check()?;

// update model with the verified parameters, this only returns
// errors originating from the fitting process
let model = checked_params.fit_with(Some(model), &ds)?;

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

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

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

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.