-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathExample4_PyNN.json
127 lines (127 loc) · 3.49 KB
/
Example4_PyNN.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"Example4_PyNN": {
"version": "NeuroMLlite v0.6.0",
"notes": "Example 4: a network with PyNN cells & inputs",
"parameters": {
"input_amp": 0.99
},
"cells": {
"testcell": {
"parameters": {
"tau_refrac": 5,
"i_offset": 0.1
},
"pynn_cell": "IF_cond_alpha"
},
"testcell2": {
"parameters": {
"tau_refrac": 5,
"i_offset": -0.1
},
"pynn_cell": "IF_cond_alpha"
}
},
"synapses": {
"ampaSyn": {
"parameters": {
"e_rev": -10,
"tau_syn": 2
},
"pynn_synapse_type": "cond_alpha",
"pynn_receptor_type": "excitatory"
},
"gabaSyn": {
"parameters": {
"e_rev": -80,
"tau_syn": 10
},
"pynn_synapse_type": "cond_alpha",
"pynn_receptor_type": "inhibitory"
}
},
"input_sources": {
"i_clamp": {
"parameters": {
"amplitude": "input_amp",
"start": 200.0,
"stop": 800.0
},
"pynn_input": "DCSource"
}
},
"regions": {
"region1": {
"x": 0.0,
"y": 0.0,
"z": 0.0,
"width": 1000.0,
"height": 100.0,
"depth": 1000.0
}
},
"populations": {
"pop0": {
"size": 2,
"component": "testcell",
"properties": {
"color": "1 0 0",
"radius": 20
},
"random_layout": {
"region": "region1"
}
},
"pop1": {
"size": 2,
"component": "testcell2",
"properties": {
"color": "0 1 0",
"radius": 20
},
"random_layout": {
"region": "region1"
}
},
"pop2": {
"size": 1,
"component": "testcell2",
"properties": {
"color": "0 0 1",
"radius": 20
},
"random_layout": {
"region": "region1"
}
}
},
"projections": {
"proj0": {
"presynaptic": "pop0",
"postsynaptic": "pop1",
"synapse": "ampaSyn",
"delay": 2,
"weight": 0.02,
"random_connectivity": {
"probability": 1
}
},
"proj1": {
"presynaptic": "pop0",
"postsynaptic": "pop2",
"synapse": "gabaSyn",
"delay": 2,
"weight": 0.01,
"random_connectivity": {
"probability": 1
}
}
},
"inputs": {
"stim": {
"input_source": "i_clamp",
"population": "pop0",
"percentage": 50
}
}
}
}