Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions brainpy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
# limitations under the License.
# ==============================================================================

__version__ = "2.7.0"
__version_info__ = (2, 7, 0)
__version__ = "2.7.1"
__version_info__ = (2, 7, 1)


from brainpy import _errors as errors
Expand Down
12 changes: 12 additions & 0 deletions brainpy/dyn/neurons/lif.py
Original file line number Diff line number Diff line change
Expand Up @@ -857,6 +857,10 @@ class ExpIF(ExpIFLTC):
conductance-based synaptic drive." Physical Review E 76, no. 2 (2007): 021919.
.. [5] https://en.wikipedia.org/wiki/Exponential_integrate-and-fire

.. seealso::

:class:`brainpy.state.ExpIF` provides the state-based formulation of this neuron.

**Examples**

There is a simple usage example::
Expand Down Expand Up @@ -978,6 +982,10 @@ class ExpIFRefLTC(ExpIFLTC):
conductance-based synaptic drive." Physical Review E 76, no. 2 (2007): 021919.
.. [5] https://en.wikipedia.org/wiki/Exponential_integrate-and-fire

.. seealso::

:class:`brainpy.state.ExpIFRef` provides the state-based formulation of this neuron.

**Examples**

There is a simple usage example::
Expand Down Expand Up @@ -1319,6 +1327,10 @@ class AdExIFLTC(GradNeuDyn):
inputs." Journal of Neuroscience 23.37 (2003): 11628-11640.
.. [2] http://www.scholarpedia.org/article/Adaptive_exponential_integrate-and-fire_model

.. seealso::

:class:`brainpy.state.AdExIF` provides the state-based formulation of this model.

**Examples**

An example usage:
Expand Down
8 changes: 6 additions & 2 deletions brainpy/state/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@
from ._inputs import __all__ as inputs_all
from ._lif import *
from ._lif import __all__ as neuron_all
from ._izhikevich import *
from ._izhikevich import __all__ as izh_all
from ._hh import *
from ._hh import __all__ as hh_all
from ._projection import *
from ._projection import __all__ as proj_all
from ._readout import *
Expand All @@ -36,9 +40,9 @@
from ._synouts import __all__ as synout_all
from .. import mixin

__main__ = ['version2', 'mixin'] + inputs_all + neuron_all + readout_all + stp_all + synapse_all
__main__ = ['version2', 'mixin'] + inputs_all + neuron_all + izh_all + hh_all + readout_all + stp_all + synapse_all
__main__ = __main__ + synout_all + base_all + exp_all + proj_all + synproj_all
del inputs_all, neuron_all, readout_all, stp_all, synapse_all, synout_all, base_all
del inputs_all, neuron_all, izh_all, hh_all, readout_all, stp_all, synapse_all, synout_all, base_all
del exp_all, proj_all, synproj_all

if __name__ == '__main__':
Expand Down
Loading
Loading