Commit 6eda215 1 parent d090fdb commit 6eda215 Copy full SHA for 6eda215
File tree 3 files changed +9
-6
lines changed
3 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 12
12
hartmann_tl_inverted_noise_benchmark ,
13
13
)
14
14
from benchmarks .domains .michalewicz_tl_noise import michalewicz_tl_noise_benchmark
15
- from benchmarks .domains .synthetic_2C1D_1C import synthetic_2C1D_1C_benchmark
15
+
16
+ # from benchmarks.domains.synthetic_2C1D_1C import synthetic_2C1D_1C_benchmark
16
17
17
18
BENCHMARKS : list [Benchmark ] = [
18
- synthetic_2C1D_1C_benchmark ,
19
+ # synthetic_2C1D_1C_benchmark,
19
20
arylhalides_tl_substance_benchmark ,
20
21
direct_arylation_tl_temp_benchmark ,
21
22
hartmann_tl_inverted_noise_benchmark ,
Original file line number Diff line number Diff line change @@ -158,10 +158,10 @@ def easom_tl_noise(settings: ConvergenceBenchmarkSettings) -> pd.DataFrame:
158
158
results = []
159
159
160
160
def sample_initial_data ():
161
- p = 0.0005
161
+ p = 0.0001
162
162
upsample_max_thr = 0.5
163
163
n_upsample_max = 3
164
- return pd .concat (
164
+ data_sub = pd .concat (
165
165
[
166
166
# Sample specific fraction of initial data
167
167
initial_data .sample (frac = p ),
@@ -171,6 +171,7 @@ def sample_initial_data():
171
171
).sample (n = n_upsample_max ),
172
172
]
173
173
)
174
+ return data_sub
174
175
175
176
results .append (
176
177
simulate_scenarios (
Original file line number Diff line number Diff line change @@ -144,10 +144,10 @@ def michalewicz_tl_noise(settings: ConvergenceBenchmarkSettings) -> pd.DataFrame
144
144
results = []
145
145
146
146
def sample_initial_data ():
147
- p = 0.005
147
+ p = 0.0005
148
148
upsample_max_thr = 3
149
149
n_upsample_max = 3
150
- return pd .concat (
150
+ data_sub = pd .concat (
151
151
[
152
152
# Sample specific fraction of initial data
153
153
initial_data .sample (frac = p ),
@@ -157,6 +157,7 @@ def sample_initial_data():
157
157
).sample (n = n_upsample_max ),
158
158
]
159
159
)
160
+ return data_sub
160
161
161
162
results .append (
162
163
simulate_scenarios (
You can’t perform that action at this time.
0 commit comments