Struct space::LinearKnn[][src]

pub struct LinearKnn<M, I> {
    pub metric: M,
    pub iter: I,
}
Expand description

Performs a linear knn search by iterating over everything in the space and performing a binary search on running set of neighbors.

Example

use space::{Knn, LinearKnn, Metric, Neighbor};

struct Hamming;

impl Metric<u8> for Hamming {
    type Unit = u8;

    fn distance(&self, &a: &u8, &b: &u8) -> Self::Unit {
        (a ^ b).count_ones() as u8
    }
}

let data = [
    0b1010_1010,
    0b1111_1111,
    0b0000_0000,
    0b1111_0000,
    0b0000_1111,
];

let search = LinearKnn {
    metric: Hamming,
    iter: data.iter(),
};

assert_eq!(
    &search.knn(&0b0101_0000, 3),
    &[
        Neighbor { index: 2, distance: 2 },
        Neighbor { index: 3, distance: 2 },
        Neighbor { index: 0, distance: 6 },
    ]
);

Fields

metric: Miter: I

Trait Implementations

Get num nearest neighbors of target. Read more

Get the nearest neighbor of target. Read more

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

Performs the conversion.

Performs the conversion.

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.