From 4364a21f28df23eb81169972a54af67204a7eeaf Mon Sep 17 00:00:00 2001 From: Sam Daulton Date: Wed, 27 Sep 2023 16:21:50 -0700 Subject: [PATCH] add constrained gramacy to nightly benchmarks (#1877) Summary: Pull Request resolved: https://github.com/facebook/Ax/pull/1877 Add constrained gramacy to the registry Reviewed By: esantorella Differential Revision: D49689307 fbshipit-source-id: 3d51653193f64e4865f4f71781a205181d19c123 --- ax/benchmark/problems/registry.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/ax/benchmark/problems/registry.py b/ax/benchmark/problems/registry.py index ffe1d07497c..f3eef519a60 100644 --- a/ax/benchmark/problems/registry.py +++ b/ax/benchmark/problems/registry.py @@ -217,6 +217,15 @@ class BenchmarkProblemRegistryEntry: factory_fn=get_jenatton_benchmark_problem, factory_kwargs={"num_trials": 50, "infer_noise": False}, ), + "constrained_gramacy_fixed_noise": BenchmarkProblemRegistryEntry( + factory_fn=SingleObjectiveBenchmarkProblem.from_botorch_synthetic, + factory_kwargs={ + "test_problem_class": synthetic.ConstrainedGramacy, + "test_problem_kwargs": {}, + "num_trials": 50, + "infer_noise": False, + }, + ), }