Skip to content

Commit 508e682

Browse files
committed
Fix X_pending and constraints errors
1 parent ad598b2 commit 508e682

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

optimas/generators/ax/service/multi_fidelity.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,11 @@ def _create_generation_steps(
124124
GenerationStep(
125125
model=Models.BOTORCH_MODULAR,
126126
num_trials=-1,
127-
model_kwargs=bo_model_kwargs,
127+
model_kwargs={
128+
**bo_model_kwargs,
129+
"acquisition_options": {"X_pending": None,
130+
"constraints": None}
131+
},
128132
model_gen_kwargs={
129133
"model_gen_options": {
130134
Keys.ACQF_KWARGS: {

0 commit comments

Comments
 (0)