File tree 2 files changed +18
-13
lines changed
vizier/_src/algorithms/designers
2 files changed +18
-13
lines changed Original file line number Diff line number Diff line change @@ -655,14 +655,24 @@ def __attrs_post_init__(self):
655
655
# Extra validations
656
656
if self ._problem .search_space .is_conditional :
657
657
raise ValueError (f'{ type (self )} does not support conditional search.' )
658
- elif (
659
- len (self ._problem .metric_information ) != 1
660
- and self ._config .optimize_set_acquisition_for_exploration
661
- ):
662
- raise ValueError (
663
- f'{ type (self )} works with exactly one metric when'
664
- ' `optimize_set_acquisition_for_exploration` is enabled.'
665
- )
658
+ elif len (self ._problem .metric_information ) != 1 :
659
+ if self ._config .optimize_set_acquisition_for_exploration :
660
+ raise ValueError (
661
+ f'{ type (self )} works with exactly one metric when'
662
+ ' `optimize_set_acquisition_for_exploration` is enabled.'
663
+ )
664
+ empty_labels = jnp .array ([[]])
665
+ padded_labels = self ._padding_schedule .pad_labels (empty_labels )
666
+ if padded_labels .shape [0 ] != empty_labels .shape [0 ]:
667
+ raise ValueError (
668
+ f'{ type (self )} does not support trial padding for multimetric'
669
+ ' problems.'
670
+ )
671
+ if padded_labels .shape [1 ] != empty_labels .shape [1 ]:
672
+ raise ValueError (
673
+ f'{ type (self )} does not support metric padding for multimetric'
674
+ ' problems.'
675
+ )
666
676
667
677
# Extra initializations.
668
678
# Discrete parameters are continuified to account for their actual values.
Original file line number Diff line number Diff line change @@ -90,7 +90,6 @@ class GpUcbPeTest(parameterized.TestCase):
90
90
iters = 3 ,
91
91
batch_size = 3 ,
92
92
num_metrics = 2 ,
93
- applies_padding = True ,
94
93
multimetric_promising_region_penalty_type = (
95
94
gp_ucb_pe .MultimetricPromisingRegionPenaltyType .UNION
96
95
),
@@ -99,7 +98,6 @@ class GpUcbPeTest(parameterized.TestCase):
99
98
iters = 3 ,
100
99
batch_size = 3 ,
101
100
num_metrics = 2 ,
102
- applies_padding = True ,
103
101
ensemble_size = 4 ,
104
102
multimetric_promising_region_penalty_type = (
105
103
gp_ucb_pe .MultimetricPromisingRegionPenaltyType .INTERSECTION
@@ -111,23 +109,20 @@ class GpUcbPeTest(parameterized.TestCase):
111
109
num_seed_trials = 5 ,
112
110
num_metrics = 2 ,
113
111
multitask_type = mt_type .SEPARABLE_NORMAL_TASK_KERNEL_PRIOR ,
114
- applies_padding = True ,
115
112
),
116
113
dict (
117
114
iters = 3 ,
118
115
batch_size = 5 ,
119
116
num_seed_trials = 5 ,
120
117
num_metrics = 2 ,
121
118
multitask_type = mt_type .SEPARABLE_LKJ_TASK_KERNEL_PRIOR ,
122
- applies_padding = True ,
123
119
),
124
120
dict (
125
121
iters = 3 ,
126
122
batch_size = 5 ,
127
123
num_seed_trials = 5 ,
128
124
num_metrics = 2 ,
129
125
multitask_type = mt_type .SEPARABLE_DIAG_TASK_KERNEL_PRIOR ,
130
- applies_padding = True ,
131
126
),
132
127
)
133
128
def test_on_flat_space (
You can’t perform that action at this time.
0 commit comments