-
Notifications
You must be signed in to change notification settings - Fork 2
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
To increase usability of minimizer it should be possible to set the tolerance and the max number of iteration #84
Conversation
…crease-usability-of-minimizer-it-should-be-possible-to-set-the-tolerance-and-the-max-number-of-iteration
minimizer_kwargs.update(engine_kwargs) | ||
|
||
if tolerance is not None: | ||
if 0.1 < tolerance: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is 0.1 chosen as the maximum possible tolerance value?
if max_evaluations is not None: | ||
kwargs['maxfun'] = max_evaluations # max number of function evaluations | ||
if tolerance is not None: | ||
if 0.1 < tolerance: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is 0.1 chosen as the maximum possible tolerance value?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me
On the Fitter object it is now possible to set