pub struct ResolutionConfig {
pub tau_high: f64,
pub tau_low: f64,
pub w_exact: f64,
pub w_ngram: f64,
pub w_graph: f64,
pub w_embedding: PerType<f64>,
}Expand description
Configuration for resolution thresholds and scoring weights (§10.1).
Fields§
§tau_high: f64§tau_low: f64§w_exact: f64§w_ngram: f64§w_graph: f64§w_embedding: PerType<f64>Trait Implementations§
Source§impl Clone for ResolutionConfig
impl Clone for ResolutionConfig
Source§fn clone(&self) -> ResolutionConfig
fn clone(&self) -> ResolutionConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ResolutionConfig
impl Debug for ResolutionConfig
Auto Trait Implementations§
impl Freeze for ResolutionConfig
impl RefUnwindSafe for ResolutionConfig
impl Send for ResolutionConfig
impl Sync for ResolutionConfig
impl Unpin for ResolutionConfig
impl UnsafeUnpin for ResolutionConfig
impl UnwindSafe for ResolutionConfig
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