pub struct MemoryQualityParams {
pub low_confidence_threshold: f32,
pub stale_decay_threshold: f32,
pub max_examples: usize,
}Expand description
Parameters for memory quality analysis.
Fields§
§low_confidence_threshold: f32Nodes below this confidence are considered weak evidence.
stale_decay_threshold: f32Nodes below this decay score are considered stale.
max_examples: usizeMaximum number of example IDs returned in each bucket.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for MemoryQualityParams
impl RefUnwindSafe for MemoryQualityParams
impl Send for MemoryQualityParams
impl Sync for MemoryQualityParams
impl Unpin for MemoryQualityParams
impl UnsafeUnpin for MemoryQualityParams
impl UnwindSafe for MemoryQualityParams
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