pub struct AdaptationStats {
pub adaptation_count: u64,
pub micro_lora_updates: u64,
pub base_lora_updates: u64,
pub reasoning_patterns: usize,
pub ewc_samples: u64,
}Expand description
Adaptation statistics
Fields§
§adaptation_count: u64Total adaptations
micro_lora_updates: u64MicroLoRA updates
base_lora_updates: u64BaseLoRA updates
reasoning_patterns: usizeStored reasoning patterns
ewc_samples: u64EWC samples
Trait Implementations§
Source§impl Clone for AdaptationStats
impl Clone for AdaptationStats
Source§fn clone(&self) -> AdaptationStats
fn clone(&self) -> AdaptationStats
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 AdaptationStats
impl Debug for AdaptationStats
Source§impl<'de> Deserialize<'de> for AdaptationStats
impl<'de> Deserialize<'de> for AdaptationStats
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 AdaptationStats
impl RefUnwindSafe for AdaptationStats
impl Send for AdaptationStats
impl Sync for AdaptationStats
impl Unpin for AdaptationStats
impl UnwindSafe for AdaptationStats
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