File tree Expand file tree Collapse file tree 2 files changed +17
-2
lines changed
Expand file tree Collapse file tree 2 files changed +17
-2
lines changed Original file line number Diff line number Diff line change @@ -191,6 +191,23 @@ cell supports either Euler or midpoint method / RK-2 integration.)
191191 :noindex:
192192```
193193
194+ ### The Resonate-and-Fire (RAF) Cell
195+
196+ This cell models dynamics over voltage ` v ` and a angular driver state/variable ` w ` ; these
197+ two variables result in a dampened oscillatory spiking neuronal cell). In effect, the
198+ resonatoe-and-fire (RAF) model (or "resonator") evolves as a result of two coupled
199+ differential equations. (Note that this cell supports either Euler or RK-2 integration.)
200+
201+ ``` {eval-rst}
202+ .. autoclass:: ngclearn.components.RAFCell
203+ :noindex:
204+
205+ .. automethod:: advance_state
206+ :noindex:
207+ .. automethod:: reset
208+ :noindex:
209+ ```
210+
194211### The Izhikevich Cell
195212
196213This cell models dynamics over voltage ` v ` and a recover variable ` w ` (where ` w `
Original file line number Diff line number Diff line change 1919from .neurons .spiking .izhikevichCell import IzhikevichCell
2020from .neurons .spiking .RAFCell import RAFCell
2121
22-
2322## point to transformer/operater component types
2423from .other .varTrace import VarTrace
2524from .other .expKernel import ExpKernel
3231from .input_encoders .latencyCell import LatencyCell
3332from .input_encoders .phasorCell import PhasorCell
3433
35-
3634## point to synapse component types
3735from .synapses .denseSynapse import DenseSynapse
3836from .synapses .staticSynapse import StaticSynapse
You can’t perform that action at this time.
0 commit comments