Closed jchen6727 closed 3 months ago
update batch re: end user suggestion
can now initialize cfg with a dictionary:
cfg
from netpyne.batchtools import specs cfg = specs.SimConfig({'x': [None] * 4})
creates a new cfg such that it already has value x, e.g.
cfg.x = [None, None, None, None]
update to documentation with some minimal working examples (see https://github.com/suny-downstate-medical-center/netpyne/tree/batch/netpyne/batchtools/examples), esp. Rosenbrock w/ coupled parameters, nested parameters, etc.
update batch re: end user suggestion
can now initialize
cfg
with a dictionary:creates a new cfg such that it already has value x, e.g.
update to documentation with some minimal working examples (see https://github.com/suny-downstate-medical-center/netpyne/tree/batch/netpyne/batchtools/examples), esp. Rosenbrock w/ coupled parameters, nested parameters, etc.