superneuromat.SNN.reset#

SNN.reset()[source]#

Reset the SNN’s neuron states, refractory periods, spike train, and input spikes.

Equivalent to:

snn.reset_neuron_states()
snn.reset_refractory_periods()
snn.clear_spike_train()
snn.clear_input_spikes()

Warning

This method does not reset the synaptic weights or STDP parameters. Instead, consider copying the parameters you care about so you can assign them later.

See Resetting the SNN for more information.