setting graded_spike = True for slayer.neuron.cuba.Neuron causes to hang the program #349
Unanswered
gwgknudayanga
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi ,
When i set the graded_spike = True for the LIF neuron, the program is hanging.
neuron_params_2 = {
'threshold' : 0.0,
'graded_spike' : True,
'current_decay' : 0.25,
'voltage_decay' : 0.03,
'tau_grad' : 0.03,
'scale_grad' : 3,
'requires_grad' : False,
}
self.head = torch.nn.ModuleList([
slayer.synapse.Conv(16,10,kernel_size=1, stride=1, padding=0,pre_hook_fx = quantizer),
slayer.neuron.cuba.Neuron(**neuron_params_2),
])
Beta Was this translation helpful? Give feedback.
All reactions