-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
FitBase: expose **kwargs of curve_fit #6
Comments
We might just want to give the option of passing |
That's more or less what I was referring to – would this work for us? If we can avoid having to manually set this in 99.999% of cases, this seems like a huge win. |
That might do the trick. Would it hurt to expose **kwargs though? |
Probably not – at least if it's a named dictionary ( |
I've modified |
Will do that later. |
We might need update |
Un-assigning myself, as |
Fitting with parameter values far from unity can be improved by passing characteristic parameter scales to
curve_fit
using the optional thex_scale
keyword argument.This argument is documneted under
scipy.optimize.least_squares
.curve_fit
calls this function internally.**kwargs
tocurve_fit
are passed toscipy.optimize.least_squares
.The text was updated successfully, but these errors were encountered: