Replies: 1 comment 2 replies
-
@creekmar could you provide a bit more details on how the fixed features come into play here? Maybe provide some more extensive code example to repro this so we can better understand the exact issue? |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have a nonlinear constraint on a continuous variable based on a discrete variable. Where we are constraining the temperature based on the boiling point chosen. The boiling points are [61.2, 110.6, 132, 214.4, 180.1], and the bounds of the temperature we choose is continuous from [20, 140]. And we want the chosen temperature less than the boiling point.
I am using optimize_acqf_mixed and ran into the error
After looking into the code, I realized that the fixed features list is forcibly changing batched_initial_conditions to the specified fixed feature. Therefore one of the candidates which originally looked like tensor([ 80.0000, 214.4000]) would be forcibly changed to tensor([ 80.0000, 61.2000]), which would not meet the constraints. Is there any way to deal with this?
Beta Was this translation helpful? Give feedback.
All reactions