pub struct FastCoverOptions {
pub optimize: bool,
pub split_point: f64,
pub accel: usize,
pub k: usize,
pub d: usize,
pub f: u32,
pub k_candidates: Vec<usize>,
pub d_candidates: Vec<usize>,
pub f_candidates: Vec<u32>,
}Available on crate feature
dict_builder only.Expand description
Tuning knobs for pure-Rust FastCOVER training.
Fields§
§optimize: bool§split_point: f64§accel: usize§k: usize§d: usize§f: u32§k_candidates: Vec<usize>§d_candidates: Vec<usize>§f_candidates: Vec<u32>Trait Implementations§
Source§impl Clone for FastCoverOptions
impl Clone for FastCoverOptions
Source§fn clone(&self) -> FastCoverOptions
fn clone(&self) -> FastCoverOptions
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 FastCoverOptions
impl Debug for FastCoverOptions
Auto Trait Implementations§
impl Freeze for FastCoverOptions
impl RefUnwindSafe for FastCoverOptions
impl Send for FastCoverOptions
impl Sync for FastCoverOptions
impl Unpin for FastCoverOptions
impl UnsafeUnpin for FastCoverOptions
impl UnwindSafe for FastCoverOptions
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