pub struct TripletStdpSynapse {}Expand description
Triplet STDP: considers timing of three spikes for more accurate visual cortex plasticity modelling.
Extends pair-based STDP with a slow post-synaptic trace o2 that gates potentiation and a slow pre-synaptic trace r2 that gates depression:
Δw⁺ = A₂⁺ · r1(t) · o2(t-ε) (triplet LTP) Δw⁻ = A₂⁻ · o1(t) · r2(t-ε) (triplet LTD)
Reference: Pfister & Gerstner (2006) “Triplet of spikes in a model of spike timing-dependent plasticity”, J. Neuroscience 26(38).
Fields§
§weight: f64§w_min: f64§w_max: f64§r1: f64§o1: f64§r2: f64§o2: f64§tau_plus: f64§tau_minus: f64§tau_x: f64§tau_y: f64§a2_plus: f64§a2_minus: f64§a3_plus: f64§a3_minus: f64§dt: f64Implementations§
Trait Implementations§
Source§impl Clone for TripletStdpSynapse
impl Clone for TripletStdpSynapse
Source§fn clone(&self) -> TripletStdpSynapse
fn clone(&self) -> TripletStdpSynapse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for TripletStdpSynapse
impl RefUnwindSafe for TripletStdpSynapse
impl Send for TripletStdpSynapse
impl Sync for TripletStdpSynapse
impl Unpin for TripletStdpSynapse
impl UnsafeUnpin for TripletStdpSynapse
impl UnwindSafe for TripletStdpSynapse
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more