-
Notifications
You must be signed in to change notification settings - Fork 66
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
Convergence/Divergence #11
Comments
there could be a "diverged" stop criterion as well. the problem would then be a special case of the whole stopping mechanism and shouldn't be handled by the minimizer explicitly. so that would be suggestion 4 "just continue". but i don't know if an external stop criterion can always decide that the algorithm diverged only based on the |
The difference here is, that divergence can actually be harmfull. If we converge, running longer does not do any harm since our solution Thus, a divergence stopping criterion would be the default... but that 2012/2/28 Thomas Rückstieß
Dipl. Inf. Justin Bayer |
So we had that issue yesterday that climin should never stop iterating because it thinks it converged. However, it might happen that it diverges and that that needs to be handled.
E.g. I am currently playing around with logistic regression and NCG which sometimes diverges because the direction becomes invalid (e.g. NaN).
What is the best behaviour here?
The text was updated successfully, but these errors were encountered: