You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to use nonlinear constraints with the NLOptNoGrad optimizer as the .acquisition function optimizer I switched to using the GN_ISRES since this supports both equality and inequality constraints. However, I found that even though the NLOptNoGrad optimizer is obeying the nonlinear constraints, the best observation being reported actually violates the constraints because it comes from one of the initial random samples.
Are there any plans for adding more comprehensive support for constraints such that they are respected by all aspects of the optimization?
I am also wondering if there is any support for using NLOPT's "Augmented Lagrangian" to add constraints to algorithms that otherwise don't support them.
The text was updated successfully, but these errors were encountered:
We do not currently have any plans to incorporate constraints inside the BOptimizer (we are not actively working on constrained BO). We do have an experimental constrained BOptimizer (see in experimental and examples). As far as I remember however, we are treating the constraints as on/off (satisfied or not).
I am trying to use nonlinear constraints with the
NLOptNoGrad
optimizer as the .acquisition function optimizer I switched to using the GN_ISRES since this supports both equality and inequality constraints. However, I found that even though theNLOptNoGrad
optimizer is obeying the nonlinear constraints, the best observation being reported actually violates the constraints because it comes from one of the initial random samples.Are there any plans for adding more comprehensive support for constraints such that they are respected by all aspects of the optimization?
I am also wondering if there is any support for using NLOPT's "Augmented Lagrangian" to add constraints to algorithms that otherwise don't support them.
The text was updated successfully, but these errors were encountered: