pub enum RelevanceFunction {
TerraphimGraph,
TitleScorer,
BM25,
BM25F,
BM25Plus,
}Expand description
Defines the relevance function (scorer) to be used for ranking search
results for the Role.
Variants§
TerraphimGraph
Scorer for ranking search results based on the Terraphim graph
This is based on filtered result outputs according to the ranking of the knowledge graph. The node, which is most connected will produce the highest ranking
TitleScorer
Scorer for ranking search results based on the title of a document
BM25
BM25 (Okapi BM25) relevance function for probabilistic ranking
BM25F
BM25F relevance function with field-specific weights (title, body, description, tags)
BM25Plus
BM25Plus relevance function with enhanced parameters for fine-tuning
Trait Implementations§
Source§impl Clone for RelevanceFunction
impl Clone for RelevanceFunction
Source§fn clone(&self) -> RelevanceFunction
fn clone(&self) -> RelevanceFunction
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RelevanceFunction
impl Debug for RelevanceFunction
Source§impl Default for RelevanceFunction
impl Default for RelevanceFunction
Source§fn default() -> RelevanceFunction
fn default() -> RelevanceFunction
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RelevanceFunction
impl<'de> Deserialize<'de> for RelevanceFunction
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl JsonSchema for RelevanceFunction
impl JsonSchema for RelevanceFunction
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for RelevanceFunction
impl PartialEq for RelevanceFunction
Source§impl Serialize for RelevanceFunction
impl Serialize for RelevanceFunction
impl Copy for RelevanceFunction
impl Eq for RelevanceFunction
impl StructuralPartialEq for RelevanceFunction
Auto Trait Implementations§
impl Freeze for RelevanceFunction
impl RefUnwindSafe for RelevanceFunction
impl Send for RelevanceFunction
impl Sync for RelevanceFunction
impl Unpin for RelevanceFunction
impl UnwindSafe for RelevanceFunction
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more