pub enum PlasticityMode {
Instant,
Behavioral,
Eligibility,
Classic,
}Expand description
Plasticity learning modes.
Variants§
Instant
SONA MicroLoRA: <1ms instant adaptation, EWC++ regularization
Behavioral
BTSP: behavioral timescale, 1–3 second windows, one-shot
Eligibility
E-prop: eligibility propagation, 1000ms credit assignment
Classic
EWC: classic Fisher Information regularization
Trait Implementations§
Source§impl Clone for PlasticityMode
impl Clone for PlasticityMode
Source§fn clone(&self) -> PlasticityMode
fn clone(&self) -> PlasticityMode
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 PlasticityMode
impl Debug for PlasticityMode
Source§impl PartialEq for PlasticityMode
impl PartialEq for PlasticityMode
impl Copy for PlasticityMode
impl Eq for PlasticityMode
impl StructuralPartialEq for PlasticityMode
Auto Trait Implementations§
impl Freeze for PlasticityMode
impl RefUnwindSafe for PlasticityMode
impl Send for PlasticityMode
impl Sync for PlasticityMode
impl Unpin for PlasticityMode
impl UnsafeUnpin for PlasticityMode
impl UnwindSafe for PlasticityMode
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