Skip to content

Commit

Permalink
fixed a small bug in the adrf neuron forward function
Browse files Browse the repository at this point in the history
  • Loading branch information
felixthoe committed May 13, 2024
1 parent e435b45 commit 3d060eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lava/lib/dl/slayer/neuron/adrf.py
Original file line number Diff line number Diff line change
Expand Up @@ -674,4 +674,4 @@ def forward(self, input):
"""
real, imag, threshold, refractory = self.dynamics(input)
return self.spike(real, imag, threshold + refractory)
return self.spike(real, imag, threshold, refractory)

0 comments on commit 3d060eb

Please sign in to comment.