Default hyperparameter values #874
Replies: 1 comment 2 replies
-
@jcjaskula-aws Does the default value of 1.e-10 for The default value for The challenge is that sqrt(1.e-15) is still smaller than machine precision for float32. So if someone gives independent data of I don't think there is any obvious best value for It is certainly possible to explicitly set |
Beta Was this translation helpful? Give feedback.
-
Hello,
This commit changed the default value of
epsfcn
. If I want to recover the old behavior, I understand that I would need to passepsfcn
for all theModel
s individually.As the default value for
scipy.optimize
isNone
, I wonder iflmfit
should not follow this default choice instead of setting it to an arbitrary value. On the other hand, if we stick to this solution, could we find a way to define these default value globally and enable users to change them with something likelmfit.set_default_values({"epsfcn": None})
?Beta Was this translation helpful? Give feedback.
All reactions