Wiki » History » Version 22
Vitor Chaud, 30 Apr 2014 14:57
1 | 1 | Padraig Gleeson | Introduction |
---|---|---|---|
2 | 7 | Padraig Gleeson | ------------ |
3 | 1 | Padraig Gleeson | |
4 | 7 | Padraig Gleeson | This project will contain examples of the Izhikevich spiking neuron model. |
5 | 1 | Padraig Gleeson | |
6 | 8 | Padraig Gleeson | ### Installation |
7 | 7 | Padraig Gleeson | |
8 | 22 | Vitor Chaud | To get local clone of this project [Install Git](http://www.opensourcebrain.org/projects/gitintro/wiki/Wiki), go to the directory in which the project will be cloned and type: |
9 | 1 | Padraig Gleeson | |
10 | 22 | Vitor Chaud | > git clone https://github.com/OpenSourceBrain/IzhikevichModel.git |
11 | 22 | Vitor Chaud | |
12 | 8 | Padraig Gleeson | ### Versions of the project |
13 | 7 | Padraig Gleeson | |
14 | 7 | Padraig Gleeson | The original model in [MATLAB format](http://izhikevich.org/publications/figure1.m) has been converted to a number of other formats. |
15 | 7 | Padraig Gleeson | |
16 | 20 | Vitor Chaud | #### PyNN |
17 | 20 | Vitor Chaud | |
18 | 20 | Vitor Chaud | Install [PyNN](http://neuralensemble.org/trac/PyNN/wiki/Installation). Preferably, use the latest v0.8 version from [GitHub](https://github.com/NeuralEnsemble/PyNN). Note: NEURON is the only supported simulator for this model at the moment. |
19 | 20 | Vitor Chaud | |
20 | 21 | Vitor Chaud | > cd IzhikevichModel/PyNN/ |
21 | 20 | Vitor Chaud | |
22 | 20 | Vitor Chaud | To run a simulation type: |
23 | 20 | Vitor Chaud | |
24 | 20 | Vitor Chaud | > python izhikevich2004.py neuron |
25 | 7 | Padraig Gleeson | |
26 | 8 | Padraig Gleeson | #### NeuroML 2 |
27 | 7 | Padraig Gleeson | |
28 | 7 | Padraig Gleeson | … |
29 | 7 | Padraig Gleeson | |
30 | 7 | Padraig Gleeson | The XML for an Izhikevich model in NeuroML v2.0 is below: |
31 | 7 | Padraig Gleeson | |
32 | 1 | Padraig Gleeson | <code class="xml"> |
33 | 1 | Padraig Gleeson | <izhikevichCell id="TonicSpiking" v0 = "-70mV" thresh = "30mV" a ="0.02" b = "0.2" c = "-65.0" d = "6" Iamp="0" Idel="0ms" Idur="2000ms"/></code> |
34 | 1 | Padraig Gleeson | |
35 | 1 | Padraig Gleeson | For full examples of single cells see [TonicSpiking](/projects/izhikevichmodel/repository/entry/neuroConstruct/cellMechanisms/TonicSpiking/TonicSpiking.nml) or [PhasicBursting](/projects/izhikevichmodel/repository/entry/neuroConstruct/cellMechanisms/PhasicBursting/PhasicBursting.nml) |
36 | 1 | Padraig Gleeson | |
37 | 1 | Padraig Gleeson | Tested with simulators: … |
38 | 8 | Padraig Gleeson | |
39 | 8 | Padraig Gleeson | ### Comparison to original model behaviour |
40 | 8 | Padraig Gleeson | |
41 | 8 | Padraig Gleeson | table{border:1px solid black}. |
42 | 15 | Vitor Chaud | {background:\#ddd}. |**Model**| **Label** | **PyNN** | **NeuroML** | |
43 | 15 | Vitor Chaud | |Tonic spiking | A |(a) | (a) | |
44 | 15 | Vitor Chaud | |Phasic spiking| B |(a) | (a) | |
45 | 15 | Vitor Chaud | |Tonic bursting| C |(b) | (b) | |
46 | 15 | Vitor Chaud | |Phasic bursting| D |(a) | (a) | |
47 | 15 | Vitor Chaud | |Mixed mode| E |(a) | (a) | |
48 | 15 | Vitor Chaud | |Spike freq. adapt.| F |(a) | (a) | |
49 | 15 | Vitor Chaud | |Class 1 excitable| G |(d, e)| (a, e) | |
50 | 15 | Vitor Chaud | |Class 2 excitable| H |(d)| © | |
51 | 15 | Vitor Chaud | |Spike latency | I |(b)| (b) | |
52 | 15 | Vitor Chaud | |Subthresh. osc.| J |(a)| (a) | |
53 | 15 | Vitor Chaud | |Resonator| K |(a)| (a) | |
54 | 15 | Vitor Chaud | |Integrator| L |(e)| (a, e) | |
55 | 15 | Vitor Chaud | |Rebound spike| M |(a)| (a) | |
56 | 15 | Vitor Chaud | |Rebound burst| N |(a)| (a) | |
57 | 15 | Vitor Chaud | |Threshold variability| O |(a)| (a) | |
58 | 15 | Vitor Chaud | |Bistability| P |(b)| (b) | |
59 | 15 | Vitor Chaud | |Depolarizing after-potential| Q |(b)| (b) | |
60 | 18 | Vitor Chaud | |Accomodation| R |(d)| (a, f)| |
61 | 15 | Vitor Chaud | |Inhibition-induced spiking| S |(a)| ©| |
62 | 17 | Vitor Chaud | |Inhibition-induced bursting| T |(b) | (b)| |
63 | 16 | Vitor Chaud | |
64 | 16 | Vitor Chaud | (a) Same behaviour |
65 | 16 | Vitor Chaud | (b) Similar behaviour when slightly modifying parameters |
66 | 16 | Vitor Chaud | © Similar but not identical behaviour (different number of spikes in the stimulus time frame) |
67 | 19 | Vitor Chaud | (d) Not yet implemented. Need ramp injected current. See https://github.com/NeuralEnsemble/PyNN/issues/257 |
68 | 18 | Vitor Chaud | (e) Requires an alternative model implementation since the model parameterization is different in the original Matlab code. In NeuroML new ComponentType [generalizedIzhikevichCell](https://github.com/OpenSourceBrain/IzhikevichModel/blob/master/NeuroML2/GeneralizedIzhikevichCell.xml) was created. |
69 | 18 | Vitor Chaud | (f) Requires an alternative model implementation since the model parameterization is different in the original Matlab code. In NeuroML new ComponentType [accomodationIzhikevichCell](https://github.com/OpenSourceBrain/IzhikevichModel/blob/master/NeuroML2/GeneralizedIzhikevichCell.xml) was created. |