pub struct StreamingMultiOutputConfig {
pub batch_size: usize,
pub max_buffer_size: usize,
pub learning_rate: Float,
pub detect_drift: bool,
pub drift_window_size: usize,
pub drift_threshold: Float,
}Expand description
Configuration for streaming multi-output learning
Fields§
§batch_size: usizeMini-batch size for streaming updates
max_buffer_size: usizeMaximum buffer size before forced update
learning_rate: FloatLearning rate
detect_drift: boolWhether to detect concept drift
drift_window_size: usizeWindow size for drift detection
drift_threshold: FloatThreshold for drift detection
Trait Implementations§
Source§impl Clone for StreamingMultiOutputConfig
impl Clone for StreamingMultiOutputConfig
Source§fn clone(&self) -> StreamingMultiOutputConfig
fn clone(&self) -> StreamingMultiOutputConfig
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 StreamingMultiOutputConfig
impl Debug for StreamingMultiOutputConfig
Auto Trait Implementations§
impl Freeze for StreamingMultiOutputConfig
impl RefUnwindSafe for StreamingMultiOutputConfig
impl Send for StreamingMultiOutputConfig
impl Sync for StreamingMultiOutputConfig
impl Unpin for StreamingMultiOutputConfig
impl UnwindSafe for StreamingMultiOutputConfig
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> 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