Skip to content

Commit

Permalink
fixup! Add LeakyReLU neuron models
Browse files Browse the repository at this point in the history
  • Loading branch information
tbekolay committed Mar 4, 2020
1 parent 2d86acf commit b7747ae
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ Release history
.. _#119: https://github.com/nengo/nengo-dl/pull/119
.. _#126: https://github.com/nengo/nengo-dl/pull/126
.. _#128: https://github.com/nengo/nengo-dl/pull/128
.. _Nengo#1591: https://github.com/nengo/nengo/pull/1591
.. _#136: https://github.com/nengo/nengo-dl/pull/136
.. _Nengo#1591: https://github.com/nengo/nengo/pull/1591

3.0.0 (December 17, 2019)
-------------------------
Expand Down
2 changes: 1 addition & 1 deletion nengo_dl/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@
from nengo_dl.converter import Converter
from nengo_dl.neurons import (
LeakyReLU,
SpikingLeakyReLU,
SoftLIFRate,
SpikingLeakyReLU,
)
from nengo_dl.simulator import Simulator
from nengo_dl.tensor_node import TensorNode, Layer, tensor_layer
6 changes: 3 additions & 3 deletions nengo_dl/tests/test_neurons.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
import pytest

from nengo_dl import (
LeakyReLU,
SpikingLeakyReLU,
SoftLIFRate,
config,
dists,
LeakyReLU,
neuron_builders,
SoftLIFRate,
SpikingLeakyReLU,
)


Expand Down

0 comments on commit b7747ae

Please sign in to comment.