pub struct SemanticBoost {
pub distance_factor: f32,
pub phrase: String,
}
Expand description
SemanticBoost : Distance phrase is useful for moving the embedding vector of the chunk in the direction of the distance phrase. I.e. you can push a chunk with a chunk_html of "iphone" 25% closer to the term "flagship" by using the distance phrase "flagship" and a distance factor of 0.25. Conceptually it’s drawing a line (euclidean/L2 distance) between the vector for the innerText of the chunk_html and distance_phrase then moving the vector of the chunk_html distance_factor*L2Distance closer to or away from the distance_phrase point along the line between the two points.
Fields§
§distance_factor: f32
Arbitrary float (positive or negative) specifying the multiplicate factor to apply before summing the phrase vector with the chunk_html embedding vector
phrase: String
Terms to embed in order to create the vector which is weighted summed with the chunk_html embedding vector
Implementations§
Source§impl SemanticBoost
impl SemanticBoost
Sourcepub fn new(distance_factor: f32, phrase: String) -> SemanticBoost
pub fn new(distance_factor: f32, phrase: String) -> SemanticBoost
Distance phrase is useful for moving the embedding vector of the chunk in the direction of the distance phrase. I.e. you can push a chunk with a chunk_html of "iphone" 25% closer to the term "flagship" by using the distance phrase "flagship" and a distance factor of 0.25. Conceptually it’s drawing a line (euclidean/L2 distance) between the vector for the innerText of the chunk_html and distance_phrase then moving the vector of the chunk_html distance_factor*L2Distance closer to or away from the distance_phrase point along the line between the two points.
Trait Implementations§
Source§impl Clone for SemanticBoost
impl Clone for SemanticBoost
Source§fn clone(&self) -> SemanticBoost
fn clone(&self) -> SemanticBoost
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more