Replies: 2 comments 1 reply
-
|
It is difficult to come up with default values, as they highly depend on the problem. Concerning constrained optimizations, we only have SQP optimization (contributed recently) that naturally handled constraints. For least squares optimization methods, what we used for domain bounds was to rely only on clipping, i.e. forcing the state vector within bounds when the optimizer attempted to go out. This was done using I guess selecting the proper method is really problem dependent and should remain the responsibility of users. I don't known how to determine this automatically. |
Beta Was this translation helpful? Give feedback.
-
|
In WMA you get this result, if the iteration limit is set "to low": In[1]:= FindMinimum[Exp[x], {x, 3}, MaxIterations ->3]
FindMinimum::cvmit: "Failed to converge to the requested accuracy or precision within 3 iterations"
Out[1]={1.30887, {x -> 0.269167}} Can hipparchus also set "the last result from the iteration" if possible? |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Can someone of the hipparchus experts please review the
FindMinimumimplementation and the usage of the differentMultivariateOptimizers:The current implemented interface is testable online here:
For example for the questions:
ObjectiveFunctions and constraint parameters (OptimizationData) and how to determine this?See
FindMinimum, FindMaximumwith more hipparchus methods axkr/symja_android_library#1150Beta Was this translation helpful? Give feedback.
All reactions