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
10 changes: 10 additions & 0 deletions ax/benchmark/problems/registry.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
from ax.benchmark.problems.synthetic.hss.jenatton import get_jenatton_benchmark_problem
from botorch.test_functions import synthetic
from botorch.test_functions.multi_objective import BraninCurrin
from botorch.test_functions.synthetic import TrajectoryPlanning


@dataclass
Expand Down Expand Up @@ -203,6 +204,15 @@ class BenchmarkProblemRegistryEntry:
"observe_noise_sd": False,
},
),
"trajectory_planning_30": BenchmarkProblemRegistryEntry(
factory_fn=create_problem_from_botorch,
factory_kwargs={
"test_problem_class": TrajectoryPlanning,
"test_problem_kwargs": {"dim": 30},
"num_trials": 50,
"observe_noise_sd": False,
},
),
# Problems where we observe the noise level
"branin_observed_noise": BenchmarkProblemRegistryEntry(
factory_fn=create_problem_from_botorch,
Expand Down
1 change: 1 addition & 0 deletions ax/benchmark/problems/synthetic/from_botorch.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@
("StyblinskiTang", 2): -50.22278471716156,
("TensionCompressionString", None): float("inf"),
("ThreeHumpCamel", None): 3.7321680621434155,
("TrajectoryPlanning", 30): 5.350095657055234,
("WeldedBeamSO", None): float("inf"),
}

Expand Down