pub struct OnlineConfig {
pub local_steps: usize,
pub propagate_updates: bool,
}Expand description
Configuration for online learning
Fields§
§local_steps: usizeNumber of local optimization steps
propagate_updates: boolWhether to propagate updates to neighbors
Trait Implementations§
Source§impl Clone for OnlineConfig
impl Clone for OnlineConfig
Source§fn clone(&self) -> OnlineConfig
fn clone(&self) -> OnlineConfig
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 OnlineConfig
impl Debug for OnlineConfig
Auto Trait Implementations§
impl Freeze for OnlineConfig
impl RefUnwindSafe for OnlineConfig
impl Send for OnlineConfig
impl Sync for OnlineConfig
impl Unpin for OnlineConfig
impl UnsafeUnpin for OnlineConfig
impl UnwindSafe for OnlineConfig
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