Skip to content

Commit ce12a25

Browse files
committed
#566 fix experiments param assigment
1 parent 906a30f commit ce12a25

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

netpyne_ui/templates/batch.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ def run_batch(experiment):
4646
params = specs.ODict()
4747
grouped_params = []
4848
for param in experiment["params"]:
49-
params[param["mapsTo"].replace("simConfig.", "")] = param["values"]
49+
params[param["mapsTo"].replace("netParams.", "")] = param["values"]
5050
if param["inGroup"]:
51-
grouped_params.append(param["mapsTo"].replace("simConfig.", ""))
51+
grouped_params.append(param["mapsTo"].replace("netParams.", ""))
5252

5353
with open("netParams.json", "r") as f:
5454
net_params = json.load(f)

0 commit comments

Comments
 (0)