pub struct FCorefConfig {
pub max_span_length: usize,
pub top_lambda: f32,
pub max_segment_len: usize,
pub optimization_level: u8,
pub num_threads: usize,
}Expand description
Configuration for f-coref model loading.
Fields§
§max_span_length: usizeMaximum span width for mention candidates.
top_lambda: f32Fraction of tokens to keep as candidate mentions.
max_segment_len: usizeMaximum input length in tokens.
optimization_level: u8ONNX optimization level (1-3, default 3).
num_threads: usizeNumber of threads for inference (0 = auto).
Trait Implementations§
Source§impl Clone for FCorefConfig
impl Clone for FCorefConfig
Source§fn clone(&self) -> FCorefConfig
fn clone(&self) -> FCorefConfig
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 FCorefConfig
impl Debug for FCorefConfig
Source§impl Default for FCorefConfig
impl Default for FCorefConfig
Source§fn default() -> FCorefConfig
fn default() -> FCorefConfig
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for FCorefConfig
impl RefUnwindSafe for FCorefConfig
impl Send for FCorefConfig
impl Sync for FCorefConfig
impl Unpin for FCorefConfig
impl UnsafeUnpin for FCorefConfig
impl UnwindSafe for FCorefConfig
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more