pub struct LearningInfo {
pub training_samples: u64,
pub model_quality: f64,
pub discovered_features: Vec<String>,
pub model_size_bytes: usize,
}Expand description
Information about what an adaptive algorithm has learned
Fields§
§training_samples: u64Number of training samples processed
model_quality: f64Estimated model quality (0.0 to 1.0)
discovered_features: Vec<String>Key patterns or features discovered
model_size_bytes: usizeMemory usage of the learned model
Trait Implementations§
Source§impl Clone for LearningInfo
impl Clone for LearningInfo
Source§fn clone(&self) -> LearningInfo
fn clone(&self) -> LearningInfo
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 LearningInfo
impl Debug for LearningInfo
Source§impl<'de> Deserialize<'de> for LearningInfo
impl<'de> Deserialize<'de> for LearningInfo
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for LearningInfo
impl RefUnwindSafe for LearningInfo
impl Send for LearningInfo
impl Sync for LearningInfo
impl Unpin for LearningInfo
impl UnsafeUnpin for LearningInfo
impl UnwindSafe for LearningInfo
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