-
Notifications
You must be signed in to change notification settings - Fork 10
/
Example2_TestNetwork.json
78 lines (78 loc) · 2.18 KB
/
Example2_TestNetwork.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
{
"Example2_TestNetwork": {
"version": "NeuroMLlite v0.6.0",
"notes": "A simple network with 2 populations & projection between them. Cells are specified to be NeuroML 2 HH cell models & pre population is given a spiking input.",
"cells": {
"hhcell": {
"neuroml2_source_file": "test_files/hhcell.cell.nml"
}
},
"synapses": {
"ampa": {
"neuroml2_source_file": "test_files/ampa.synapse.nml"
}
},
"input_sources": {
"poissonFiringSyn": {
"neuroml2_source_file": "test_files/inputs.nml"
}
},
"regions": {
"region1": {
"x": 0.0,
"y": 0.0,
"z": 0.0,
"width": 1000.0,
"height": 100.0,
"depth": 1000.0
},
"region2": {
"x": 0.0,
"y": 200.0,
"z": 0.0,
"width": 1000.0,
"height": 100.0,
"depth": 1000.0
}
},
"populations": {
"pop0": {
"size": 5,
"component": "hhcell",
"properties": {
"color": "0 .8 0"
},
"random_layout": {
"region": "region1"
}
},
"pop1": {
"size": 10,
"component": "hhcell",
"properties": {
"color": "0 0 .8"
},
"random_layout": {
"region": "region2"
}
}
},
"projections": {
"proj0": {
"presynaptic": "pop0",
"postsynaptic": "pop1",
"synapse": "ampa",
"random_connectivity": {
"probability": 0.5
}
}
},
"inputs": {
"stim_pop0": {
"input_source": "poissonFiringSyn",
"population": "pop0",
"percentage": 80
}
}
}
}