Neuron models in Nengo

How to incorporate neuron models like Hodgkin Huxley, Hindmarsh Rose neuron etc in Nengo besides the given models in Nengo

BioSpaun is an extension of the Spaun model that includes detailed conductance-based,
compartmental models of neurons [1].

To do that, the authors developped an interface between Python and NEURON: nengo-detailed-neurons [2]. With the interface, you can certainly use Hodgkin-Huxley in Nengo.

[1] https://arxiv.org/pdf/1602.05220.pdf
[2] https://github.com/nengo/nengo-detailed-neurons

1 Like

Or there’s an example here on how to write your own neuron model https://www.nengo.ai/nengo/examples/usage/rectified_linear.html, which may be easier than interfacing with NEURON (depending on how complicated a neuron model you want to implement).