@@ -91,6 +91,7 @@ def test_eval_with_limits_holdout(self, pynisher_mock):
91
91
autosklearn_seed = 1 ,
92
92
port = self .logger_port ,
93
93
resampling_strategy = "holdout" ,
94
+ multi_objectives = ["cost" ],
94
95
stats = self .stats ,
95
96
memory_limit = 3072 ,
96
97
metric = accuracy ,
@@ -121,6 +122,7 @@ def test_zero_or_negative_cutoff(self, pynisher_mock):
121
122
backend = self .backend ,
122
123
autosklearn_seed = 1 ,
123
124
port = self .logger_port ,
125
+ multi_objectives = ["cost" ],
124
126
resampling_strategy = "holdout" ,
125
127
stats = self .stats ,
126
128
metric = accuracy ,
@@ -150,6 +152,7 @@ def test_cutoff_lower_than_remaining_time(self, pynisher_mock):
150
152
backend = self .backend ,
151
153
autosklearn_seed = 1 ,
152
154
port = self .logger_port ,
155
+ multi_objectives = ["cost" ],
153
156
resampling_strategy = "holdout" ,
154
157
stats = self .stats ,
155
158
metric = accuracy ,
@@ -181,6 +184,7 @@ def test_eval_with_limits_holdout_fail_silent(self, pynisher_mock):
181
184
backend = self .backend ,
182
185
autosklearn_seed = 1 ,
183
186
port = self .logger_port ,
187
+ multi_objectives = ["cost" ],
184
188
resampling_strategy = "holdout" ,
185
189
stats = self .stats ,
186
190
memory_limit = 3072 ,
@@ -251,6 +255,7 @@ def test_eval_with_limits_holdout_fail_memory_error(self, pynisher_mock):
251
255
backend = self .backend ,
252
256
autosklearn_seed = 1 ,
253
257
port = self .logger_port ,
258
+ multi_objectives = ["cost" ],
254
259
resampling_strategy = "holdout" ,
255
260
stats = self .stats ,
256
261
memory_limit = 3072 ,
@@ -292,6 +297,7 @@ def test_eval_with_limits_holdout_fail_timeout(self, pynisher_mock):
292
297
backend = self .backend ,
293
298
autosklearn_seed = 1 ,
294
299
port = self .logger_port ,
300
+ multi_objectives = ["cost" ],
295
301
resampling_strategy = "holdout" ,
296
302
stats = self .stats ,
297
303
memory_limit = 3072 ,
@@ -341,6 +347,7 @@ def side_effect(**kwargs):
341
347
backend = self .backend ,
342
348
autosklearn_seed = 1 ,
343
349
port = self .logger_port ,
350
+ multi_objectives = ["cost" ],
344
351
resampling_strategy = "holdout" ,
345
352
stats = self .stats ,
346
353
memory_limit = 3072 ,
@@ -376,6 +383,7 @@ def side_effect(**kwargs):
376
383
backend = self .backend ,
377
384
autosklearn_seed = 1 ,
378
385
port = self .logger_port ,
386
+ multi_objectives = ["cost" ],
379
387
resampling_strategy = "holdout" ,
380
388
stats = self .stats ,
381
389
memory_limit = 3072 ,
@@ -419,6 +427,7 @@ def side_effect(*args, **kwargs):
419
427
backend = self .backend ,
420
428
autosklearn_seed = 1 ,
421
429
port = self .logger_port ,
430
+ multi_objectives = ["cost" ],
422
431
resampling_strategy = "holdout" ,
423
432
stats = self .stats ,
424
433
memory_limit = 3072 ,
@@ -454,6 +463,7 @@ def test_exception_in_target_function(self, eval_holdout_mock):
454
463
backend = self .backend ,
455
464
autosklearn_seed = 1 ,
456
465
port = self .logger_port ,
466
+ multi_objectives = ["cost" ],
457
467
resampling_strategy = "holdout" ,
458
468
stats = self .stats ,
459
469
memory_limit = 3072 ,
@@ -490,6 +500,7 @@ def test_silent_exception_in_target_function(self):
490
500
port = self .logger_port ,
491
501
autosklearn_seed = 1 ,
492
502
resampling_strategy = "holdout" ,
503
+ multi_objectives = ["cost" ],
493
504
stats = self .stats ,
494
505
memory_limit = 3072 ,
495
506
metric = accuracy ,
0 commit comments