We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 906a30f commit ce12a25Copy full SHA for ce12a25
1 file changed
netpyne_ui/templates/batch.py
@@ -46,9 +46,9 @@ def run_batch(experiment):
46
params = specs.ODict()
47
grouped_params = []
48
for param in experiment["params"]:
49
- params[param["mapsTo"].replace("simConfig.", "")] = param["values"]
+ params[param["mapsTo"].replace("netParams.", "")] = param["values"]
50
if param["inGroup"]:
51
- grouped_params.append(param["mapsTo"].replace("simConfig.", ""))
+ grouped_params.append(param["mapsTo"].replace("netParams.", ""))
52
53
with open("netParams.json", "r") as f:
54
net_params = json.load(f)
0 commit comments