Skip to content

Commit

Permalink
Reduce number of replicates to speed up benchmark time
Browse files Browse the repository at this point in the history
  • Loading branch information
Hrovatin committed Feb 25, 2025
1 parent a9a2e7d commit 50f75e1
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ def arylhalides_tl_substance(settings: ConvergenceBenchmarkSettings) -> pd.DataF
]
Optimal Output: 68.24812709999999
"""
print("arylhalides_tl_substance")

objective, searchspace, searchspace_nontl, initial_data, lookup = space_data()

recommender_botorch_preset = TwoPhaseMetaRecommender(
Expand Down Expand Up @@ -127,7 +129,7 @@ def arylhalides_tl_substance(settings: ConvergenceBenchmarkSettings) -> pd.DataF
benchmark_config = ConvergenceBenchmarkSettings(
batch_size=2,
n_doe_iterations=10,
n_mc_iterations=50,
n_mc_iterations=10,
)

arylhalides_tl_substance_benchmark = ConvergenceBenchmark(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ def direct_arylation_tl_temp(settings: ConvergenceBenchmarkSettings) -> pd.DataF
]
Optimal Output: 100.0
"""
print("direct_arylation_tl_temp")

objective, searchspace, searchspace_nontl, initial_data, lookup = space_data()

recommender_botorch_preset = TwoPhaseMetaRecommender(
Expand Down Expand Up @@ -134,7 +136,7 @@ def direct_arylation_tl_temp(settings: ConvergenceBenchmarkSettings) -> pd.DataF
benchmark_config = ConvergenceBenchmarkSettings(
batch_size=2,
n_doe_iterations=10,
n_mc_iterations=50,
n_mc_iterations=10,
)

direct_arylation_tl_temp_benchmark = ConvergenceBenchmark(
Expand Down
4 changes: 3 additions & 1 deletion benchmarks/domains/kernel_presets/easom_tl_noise.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ def easom_tl_noise(settings: ConvergenceBenchmarkSettings) -> pd.DataFrame:
]
Optimal Output: 0.9462931105452647
"""
print(easom_tl_noise)

objective, searchspace, searchspace_nontl, initial_data, lookup = space_data()

recommender_botorch_preset = TwoPhaseMetaRecommender(
Expand Down Expand Up @@ -139,7 +141,7 @@ def sample_initial_data():
benchmark_config = ConvergenceBenchmarkSettings(
batch_size=2,
n_doe_iterations=10,
n_mc_iterations=50,
n_mc_iterations=10,
)

easom_tl_noise_benchmark = ConvergenceBenchmark(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ def hartmann_tl_inverted_noise(settings: ConvergenceBenchmarkSettings) -> pd.Dat
]
Optimal Output: 2.999716768817375
"""
print("hartmann_tl_inverted_noise")

objective, searchspace, searchspace_nontl, initial_data, lookup = space_data()

recommender_botorch_preset = TwoPhaseMetaRecommender(
Expand Down Expand Up @@ -126,7 +128,7 @@ def hartmann_tl_inverted_noise(settings: ConvergenceBenchmarkSettings) -> pd.Dat
benchmark_config = ConvergenceBenchmarkSettings(
batch_size=2,
n_doe_iterations=10,
n_mc_iterations=50,
n_mc_iterations=10,
)

hartmann_tl_inverted_noise_benchmark = ConvergenceBenchmark(
Expand Down
4 changes: 3 additions & 1 deletion benchmarks/domains/kernel_presets/michalewicz_tl_noise.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ def michalewicz_tl_noise(settings: ConvergenceBenchmarkSettings) -> pd.DataFrame
]
Optimal Output: 3.418800985955677
"""
print("michalewicz_tl_noise")

objective, searchspace, searchspace_nontl, initial_data, lookup = space_data()

recommender_botorch_preset = TwoPhaseMetaRecommender(
Expand Down Expand Up @@ -143,7 +145,7 @@ def sample_initial_data():
benchmark_config = ConvergenceBenchmarkSettings(
batch_size=2,
n_doe_iterations=10,
n_mc_iterations=50,
n_mc_iterations=10,
)

michalewicz_tl_noise_benchmark = ConvergenceBenchmark(
Expand Down

0 comments on commit 50f75e1

Please sign in to comment.