Struct fbleau::estimates::knn::KNNEstimator[][src]

pub struct KNNEstimator<D> where
    D: Fn(&ArrayView1<'_, f64>, &ArrayView1<'_, f64>) -> f64
{ pub errors: Vec<u32>, pub predictions: Vec<Label>, pub k_error_count: u32, // some fields omitted }

Keeps track of the error of a k-NN classifier, with the possibility of changing k and removing training examples.

Fields

errors: Vec<u32>predictions: Vec<Label>k_error_count: u32

Implementations

impl<D> KNNEstimator<D> where
    D: Fn(&ArrayView1<'_, f64>, &ArrayView1<'_, f64>) -> f64 + Send + Sync + Copy
[src]

pub fn new(
    test_x: &ArrayView2<'_, f64>,
    test_y: &ArrayView1<'_, Label>,
    max_n: usize,
    distance: D,
    strategy: KNNStrategy
) -> KNNEstimator<D>
[src]

Create a new k-NN estimator.

pub fn from_data(
    train_x: &ArrayView2<'_, f64>,
    train_y: &ArrayView1<'_, Label>,
    test_x: &ArrayView2<'_, f64>,
    test_y: &ArrayView1<'_, Label>,
    max_n: usize,
    distance: D,
    strategy: KNNStrategy
) -> KNNEstimator<D>
[src]

Create a k-NN estimator from training and test set.

pub fn set_k(&mut self, k: usize) -> Result<(), ()>[src]

Changes the k for which k-NN predictions are given.

Trait Implementations

impl<D> BayesEstimator for KNNEstimator<D> where
    D: Fn(&ArrayView1<'_, f64>, &ArrayView1<'_, f64>) -> f64 + Send + Sync + Copy
[src]

fn add_example(&mut self, x: &ArrayView1<'_, f64>, y: Label) -> Result<(), ()>[src]

Adds a new example to the k-NN estimator's training data.

This also updates the prediction, if necessary.

fn get_error_count(&self) -> usize[src]

Returns the error count for the current k.

fn get_error(&self) -> f64[src]

Returns the error for the current k.

fn get_individual_errors(&self) -> Vec<bool>[src]

Returns the current errors for each test point.

Auto Trait Implementations

impl<D> !RefUnwindSafe for KNNEstimator<D>

impl<D> !Send for KNNEstimator<D>

impl<D> !Sync for KNNEstimator<D>

impl<D> Unpin for KNNEstimator<D> where
    D: Unpin

impl<D> !UnwindSafe for KNNEstimator<D>

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> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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.