pub struct MeteorConfig {
pub alpha: f32,
pub gamma: f32,
pub beta: f32,
}Expand description
METEOR configuration.
Fields§
§alpha: f32Weight for precision vs recall in the F-mean. Standard α = 0.9.
gamma: f32Penalty weight for fragmentation (γ, default 0.5).
beta: f32Fragmentation exponent (β, default 3.0).
Trait Implementations§
Source§impl Clone for MeteorConfig
impl Clone for MeteorConfig
Source§fn clone(&self) -> MeteorConfig
fn clone(&self) -> MeteorConfig
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 MeteorConfig
impl Debug for MeteorConfig
Auto Trait Implementations§
impl Freeze for MeteorConfig
impl RefUnwindSafe for MeteorConfig
impl Send for MeteorConfig
impl Sync for MeteorConfig
impl Unpin for MeteorConfig
impl UnsafeUnpin for MeteorConfig
impl UnwindSafe for MeteorConfig
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