clinssen
clinssen
Improve model characterization on https://nestml.readthedocs.io/en/latest/models_library/index.html, especially the plots. Add pulse current stimulus plot. Refactor script to be in a separate directory (and equally applicable to NESTML models as NEST built-in...
Feature request: permit threshold crossing based on derivative of membrane potential. Possibly, we can do an easy first-order approximation by keeping an auxiliary variable, e.g. ``` update: V_m_prev mV =...
The example in this paragraph probably has inconsistent units and should be updated: https://nestml.readthedocs.io/en/v5.2.0/nestml_language/neurons_in_nestml.html#integrating-current-input
Add benchmarks on the following standard models to the ReadTheDocs documentation: - ``brunel_alpha_nest.py``: 12500 node balanced network - ... Measure runtime NEST vs. NESTML for the same neuron model, but...
Refactoring: replace ``print_nestml_type()`` methods on ``TypeSymbol``s with a new ``NESTMLTypesPrinter``.
Feature request: automatically generate PyNN wrappers for generated NEST models, so that they can be instantiated via PyNN. Thanks to Remy C. for the following information: > I loaded the...
The NEST models ``glif_psc`` and ``glif_cond`` from [1] should be ported to NESTML. See: https://github.com/nest/nest-simulator/blob/master/models/glif_psc.cpp https://github.com/nest/nest-simulator/blob/master/models/glif_cond.cpp [1] Teeter C, Iyer R, Menon V, Gouwens N, Feng D, Berg J, Szafer...
The Vogels window in the STDP windows tutorial (https://nestml.readthedocs.io/en/latest/tutorials/stdp_windows/stdp_windows.html) cannot be reproduced; especially, the value at Δt=0 is off. This can be fixed by setting priority=2 for the post_spikes event...
Composability: if a neuron is connected to by more than one type of synapse, it needs to support the requirements of both (e.g. for postsynaptic traces, such as with Clopath...