Skip to content

Commit ec1ed77

Browse files
committed
sync
1 parent 9750747 commit ec1ed77

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

docs/tutorials/neurocog/short_term_plasticity.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -111,26 +111,28 @@ with Context("Model") as model:
111111
```
112112

113113
Notice that the `STPDenseSynapse` has two important time constants to configure;
114-
`tau_f` ($\tau_f$), the facilitation time constant, and `tau_d` ($\tau_d$, the
114+
`tau_f` ($\tau_f$), the facilitation time constant, and `tau_d` ($\tau_d$), the
115115
depression time constant. In effect, it is these two constants that you will
116116
want to set to obtain different desired behavior from this in-built dynamic
117-
synapse -- setting $\tau_f > \tau_d$ will result in STF-dominated behavior
118-
whereas setting $\tauf < \tau_d$ will produce STD-dominated behavior. Note
119-
that setting $\tau_d = 0$ will result in short-term depression being turned off
120-
completely ($\tau_f 0$ disables STF).
117+
synapse:
118+
1. setting $\tau_f > \tau_d$ will result in STF-dominated behavior; whereas
119+
2. setting $\tau_f < \tau_d$ will produce STD-dominated behavior.
120+
121+
Note that setting $\tau_d = 0$ will result in short-term depression being turned off
122+
completely ($\tau_f = 0$ disables STF).
121123

122124
Formally, given the time constants above the dynamics of the `STPDenseSynapse`
123125
operate according to the following coupled ordinary differential equations (ODEs):
124126

125127
$$
126-
\tau_f \frac{\partial u_j(t)}{\partial t} &= -u_j(t) + N_R (1 - u_j(t)) s_j(t) \\
128+
\tau_f \frac{\partial u_j(t)}{\partial t} &= -u_j(t) + N_R \big(1 - u_j(t)\big) s_j(t) \\
127129
\tau_d \frac{\partial x_j}{\partial t} &= (1 - x_j(t)) - u_j(t + \Delta t) x_j(t) s_j(t) \\
128130
$$
129131

130132
and the resulting (short-term) synaptic efficacy:
131133

132134
$$
133-
W^{dyn}(t + \Delta t) = \Big( W^{max}_{ij} u_j(t + \Delta t) x_j(t) s_j(t) \Big)
135+
W^{dyn}_{ij}(t + \Delta t) = \Big( W^{max}_{ij} u_j(t + \Delta t) x_j(t) s_j(t) \Big)
134136
+ W^{dyn}_{ij} (1 - s_j(t))
135137
$$
136138

0 commit comments

Comments
 (0)