pub struct EarlyStoppingConfig {
pub max_iterations: Option<u32>,
pub max_time_elapsed_seconds: Option<f64>,
}
Fields§
§max_iterations: Option<u32>
§max_time_elapsed_seconds: Option<f64>
Trait Implementations§
Source§impl Default for EarlyStoppingConfig
impl Default for EarlyStoppingConfig
Source§fn default() -> EarlyStoppingConfig
fn default() -> EarlyStoppingConfig
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for EarlyStoppingConfig
impl RefUnwindSafe for EarlyStoppingConfig
impl Send for EarlyStoppingConfig
impl Sync for EarlyStoppingConfig
impl Unpin for EarlyStoppingConfig
impl UnwindSafe for EarlyStoppingConfig
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