Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ An example of how to specify such models is provided in the snippet below:
```python
...
GenerationStep(
model=Models.BOTORCH_MODULAR,
model=Generators.BOTORCH_MODULAR,
num_trials=-1,
max_parallelism=3,
model_kwargs={"botorch_acqf_class": qKnowledgeGradient},
Expand Down
12 changes: 6 additions & 6 deletions benchmark_assignment.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@

import numpy as np
from ax.service.ax_client import AxClient, ObjectiveProperties
from ax.modelbridge.factory import Models
from ax.modelbridge.generation_strategy import GenerationStep, GenerationStrategy
from ax.modelbridge.factory import Generators
from ax.generation_strategy.generation_strategy import GenerationStep, GenerationStrategy
from botorch.acquisition import ExpectedImprovement

seed_list = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Expand All @@ -42,8 +42,8 @@
# --------------------------------------------------------------------------------------
import numpy as np
from ax.service.ax_client import AxClient, ObjectiveProperties
from ax.modelbridge.factory import Models
from ax.modelbridge.generation_strategy import GenerationStep, GenerationStrategy
from ax.modelbridge.factory import Generators
from ax.generation_strategy.generation_strategy import GenerationStep, GenerationStrategy
from botorch.acquisition import UpperConfidenceBound

seed_list = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Expand Down Expand Up @@ -81,8 +81,8 @@

import numpy as np
from ax.service.ax_client import AxClient, ObjectiveProperties
from ax.modelbridge.factory import Models
from ax.modelbridge.generation_strategy import GenerationStep, GenerationStrategy
from ax.modelbridge.factory import Generators
from ax.generation_strategy.generation_strategy import GenerationStep, GenerationStrategy
from botorch.acquisition import LogExpectedImprovement

seed_list = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Expand Down