Enum kite::similarity::SimilarityModel [] [src]

pub enum SimilarityModel {
    TfIdf,
    Bm25 {
        k1: f32,
        b: f32,
    },
}

Variants

Fields of Bm25

Methods

impl SimilarityModel
[src]

Trait Implementations

impl Debug for SimilarityModel
[src]

Formats the value using the given formatter.

impl Clone for SimilarityModel
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for SimilarityModel
[src]

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

This method tests for !=.