You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As a user, I want to be able to set individual thresholds for each member of a LIF population to allow for more flexibility in designing networks.
Conditions of satisfaction
Users can pass an array or list of thresholds as well as a single float to the vth parameter that will assign the corresponding threshold to each LIF neuron in the population.
For example: lif = LIF(shape=(4,), vth=[1, 2, 3, 4]) This will create 4 LIF neurons that have individual thresholds of 1, 2, 3 and 4 respectively.
The text was updated successfully, but these errors were encountered:
User story
As a user, I want to be able to set individual thresholds for each member of a LIF population to allow for more flexibility in designing networks.
Conditions of satisfaction
lif = LIF(shape=(4,), vth=[1, 2, 3, 4])
This will create 4 LIF neurons that have individual thresholds of 1, 2, 3 and 4 respectively.The text was updated successfully, but these errors were encountered: