Skip to content

Commit

Permalink
fixed a small bug in the adrf neuron forward function (#308)
Browse files Browse the repository at this point in the history
Co-authored-by: bamsumit <bam_sumit@hotmail.com>
  • Loading branch information
felixthoe and bamsumit authored May 14, 2024
1 parent 9d8ab79 commit 37ce65d
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 37ce65d

Please sign in to comment.