examples#
These are example notebooks and scripts demonstrating how to use nervos.
Notebooks#
Python Scripts#
1from nervos.examples.neuron_spiking import ExampleCurrentThroughLIFNeuron
2from nervos.utils import Parameters
3
4p = Parameters()
5p.from_url('https://pastebin.com/raw/7F4wUc0D')
6
7sim = ExampleCurrentThroughLIFNeuron(p)
8sim.simulate_pulse(180)