simetenn / uncertainpy

Uncertainpy: a Python toolbox for uncertainty quantification and sensitivity analysis, tailored towards computational neuroscience.
http://uncertainpy.readthedocs.io
GNU General Public License v3.0
220 stars 50 forks source link

Models support **kwargs #19

Closed simetenn closed 6 years ago

simetenn commented 6 years ago

Models should support using **kwargs to set default values given to the run function.

Example

NeuronModel(.., **kwargs)

Which then call something similar to

NeuronModel.run(**parameters, **kwargs)
simetenn commented 6 years ago

Fixed in commit f3a761d.