pub struct MetaLearningHealth {
pub regret: RegretSummary,
pub pareto_size: usize,
pub pareto_hypervolume: f32,
pub consecutive_plateaus: u32,
pub total_plateaus: u32,
pub curiosity_total_visits: u64,
pub decaying_beta_count: usize,
pub is_learning: bool,
pub is_diverse: bool,
pub is_exploring: bool,
}Expand description
Health summary of the meta-learning system.
Fields§
§regret: RegretSummary§pareto_size: usize§pareto_hypervolume: f32§consecutive_plateaus: u32§total_plateaus: u32§curiosity_total_visits: u64§decaying_beta_count: usize§is_learning: boolTrue if regret growth is sublinear (system is learning).
is_diverse: boolTrue if Pareto front has diverse solutions.
is_exploring: boolTrue if curiosity is actively exploring.
Trait Implementations§
Source§impl Clone for MetaLearningHealth
impl Clone for MetaLearningHealth
Source§fn clone(&self) -> MetaLearningHealth
fn clone(&self) -> MetaLearningHealth
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 MetaLearningHealth
impl Debug for MetaLearningHealth
Source§impl<'de> Deserialize<'de> for MetaLearningHealth
impl<'de> Deserialize<'de> for MetaLearningHealth
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 MetaLearningHealth
impl RefUnwindSafe for MetaLearningHealth
impl Send for MetaLearningHealth
impl Sync for MetaLearningHealth
impl Unpin for MetaLearningHealth
impl UnsafeUnpin for MetaLearningHealth
impl UnwindSafe for MetaLearningHealth
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