-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsim_configuration.json
More file actions
127 lines (127 loc) · 2.56 KB
/
sim_configuration.json
File metadata and controls
127 lines (127 loc) · 2.56 KB
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
{
"name": "Starting example",
"storage": {
"engine": "hdf5",
"root": "network.hdf5"
},
"network": {
"x": 200.0,
"y": 200.0,
"z": 200.0
},
"regions": {
"brain_region": {
"type": "stack",
"children": ["base_layer", "top_layer"]
}
},
"partitions": {
"base_layer": {
"type": "layer",
"thickness": 100
},
"top_layer": {
"type": "layer",
"thickness": 100
}
},
"cell_types": {
"base_type": {
"spatial": {
"radius": 2.5,
"density": 3.9e-4
}
},
"top_type": {
"spatial": {
"radius": 7,
"count": 40
}
}
},
"placement": {
"example_placement": {
"strategy": "bsb.placement.RandomPlacement",
"cell_types": ["base_type"],
"partitions": ["base_layer"]
},
"top_placement": {
"strategy": "bsb.placement.RandomPlacement",
"cell_types": ["top_type"],
"partitions": ["top_layer"]
}
},
"connectivity": {
"A_to_B": {
"strategy": "bsb.connectivity.AllToAll",
"presynaptic": {
"cell_types": ["base_type"]
},
"postsynaptic": {
"cell_types": ["top_type"]
}
}
},
"simulations": {
"basal_activity": {
"simulator": "nest",
"resolution": 0.1,
"duration": 5000,
"cell_models": {
"base_type": {
"model": "iaf_cond_alpha"
},
"top_type": {
"model": "iaf_cond_alpha",
"constants": {
"t_ref": 1.5,
"V_m": -62.0
}
}
},
"connection_models": {
"A_to_B": {
"synapse": {
"model": "static_synapse",
"weight": 300,
"delay": 1
}
}
},
"devices": {
"background_noise": {
"device": "poisson_generator",
"rate": 10,
"targetting": {
"strategy": "cell_model",
"cell_models": [
"base_type"
]
},
"weight": 40,
"delay": 10
},
"base_layer_record": {
"device": "spike_recorder",
"delay": 0.1,
"targetting": {
"strategy": "cell_model",
"cell_models": [
"base_type"
]
}
},
"top_layer_record": {
"device": "spike_recorder",
"delay": 0.1,
"targetting": {
"strategy": "cell_model",
"cell_models": [
"top_type"
]
}
}
}
}
}
}