Skip to content
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

Improve global bootstrap optimizer configuration #2080

Merged

Commits on Sep 3, 2024

  1. Improve global bootstrap optimizer configuration

    Currently global bootstrap uses "accuracy" in several different ways:
    * For all parameters passed to LevenbergMarquardt.
    * For all epsilon parameters passed to EndCriteria.
    * As the upper bound on the final value of the cost function.
    
    This overloading makes it quite inflexible. Instead:
    * Allow passing optimizer and EndCriteria to the constructor, which
      allows full control over all parameters.
    * Instead of checking the final value of the cost function, check the
      result type from the optimizer.
    
    Also, cleanup LevenbergMarquardt optimizer: remove commented out code,
    fix parameters passed to MINPACK.
    eltoder committed Sep 3, 2024
    Configuration menu
    Copy the full SHA
    8c64bf0 View commit details
    Browse the repository at this point in the history

Commits on Oct 3, 2024

  1. Configuration menu
    Copy the full SHA
    0e4c3df View commit details
    Browse the repository at this point in the history