Skip to content
Closed
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 ax/adapter/adapter_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
)
from ax.core.types import TBounds, TCandidateMetadata
from ax.exceptions.core import DataRequiredError, UserInputError
from ax.generators.torch.botorch_moo_defaults import (
from ax.generators.torch.botorch_moo_utils import (
get_weighted_mc_objective_and_objective_thresholds,
pareto_frontier_evaluator,
)
Expand Down
2 changes: 1 addition & 1 deletion ax/adapter/tests/test_torch_moo_adapter.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
)
from ax.core.parameter_constraint import ParameterConstraint
from ax.generators.torch.botorch_modular.generator import BoTorchGenerator
from ax.generators.torch.botorch_moo_defaults import (
from ax.generators.torch.botorch_moo_utils import (
infer_objective_thresholds,
pareto_frontier_evaluator,
)
Expand Down
2 changes: 1 addition & 1 deletion ax/adapter/torch.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
from ax.exceptions.core import DataRequiredError, UnsupportedError, UserInputError
from ax.exceptions.generation_strategy import OptimizationConfigRequired
from ax.generators.torch.botorch_modular.generator import BoTorchGenerator
from ax.generators.torch.botorch_moo_defaults import infer_objective_thresholds
from ax.generators.torch.botorch_moo_utils import infer_objective_thresholds
from ax.generators.torch.utils import _get_X_pending_and_observed
from ax.generators.torch_base import TorchGenerator, TorchOptConfig
from ax.generators.types import TConfig
Expand Down
Loading