pub enum LearningMode {
QTable,
MetaAdapt,
Distill,
Federated,
Elastic,
Informal,
Smart,
}Expand description
The active learning paradigms for the HELM engine.
Each variant corresponds to one sub-module of crate::cognition::learning.
The Smart variant enables all paradigms simultaneously.
§Examples
use lmm_agent::types::LearningMode;
use std::collections::HashSet;
let all = LearningMode::all();
assert!(all.contains(&LearningMode::QTable));
assert!(all.contains(&LearningMode::Informal));Variants§
QTable
Tabular Bellman TD(0) Q-learning.
MetaAdapt
Prototype-based task meta-adaptation.
Distill
Knowledge distillation from cold store to KnowledgeIndex.
Federated
Self-federated Q-table aggregation across agents.
Elastic
Elastic memory guard (Fisher-analog importance pinning).
Informal
Informal PMI co-occurrence mining.
Smart
Enables all paradigms (alias for the full set).
Implementations§
Source§impl LearningMode
impl LearningMode
Sourcepub fn all() -> HashSet<LearningMode>
pub fn all() -> HashSet<LearningMode>
Returns a HashSet containing all seven LearningMode variants.
Trait Implementations§
Source§impl Clone for LearningMode
impl Clone for LearningMode
Source§fn clone(&self) -> LearningMode
fn clone(&self) -> LearningMode
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 LearningMode
impl Debug for LearningMode
Source§impl<'de> Deserialize<'de> for LearningMode
impl<'de> Deserialize<'de> for LearningMode
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
Source§impl Hash for LearningMode
impl Hash for LearningMode
Source§impl PartialEq for LearningMode
impl PartialEq for LearningMode
Source§impl Serialize for LearningMode
impl Serialize for LearningMode
impl Eq for LearningMode
impl StructuralPartialEq for LearningMode
Auto Trait Implementations§
impl Freeze for LearningMode
impl RefUnwindSafe for LearningMode
impl Send for LearningMode
impl Sync for LearningMode
impl Unpin for LearningMode
impl UnsafeUnpin for LearningMode
impl UnwindSafe for LearningMode
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