Replies: 1 comment 3 replies
-
Hi @nikitrian. Do you also see a warning like "Optimization failed on the second try, after generating a new set of initial conditions."? If so, this would mean the optimization failed on retry as well, in which case the solutions you get do not have any guarantees on satisfying the constraints. It might be useful to take a look at the output of scipy.minimize to see how that looks like (which is ran in |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
My model works well without constraints. I have 9 dimensions and I decided to add a constraint in
optimize_acqf
such thatx[0]<=x[1], and I implemented it as:
I get this warning message after iteration 3,
After all the iterations are done, the results I am getting are as if the constraint does not exist and it is completely violated. Any ideas why?
Thanks
Beta Was this translation helpful? Give feedback.
All reactions