About the problem of building a model in the process of multi-objective optimization #1409
Replies: 2 comments 8 replies
-
Hmm this is likely a bug on our end. This list-to-batch conversion is pretty brittle and we need to take a more genera look at it. What is the reason you're using this in the first place rather than just using a multi-output |
Beta Was this translation helpful? Give feedback.
-
Tracking the |
Beta Was this translation helpful? Give feedback.
-
Hi,
I want to use botorch for related experiments of multi-objective optimization.
I chose to use
FixedNoiseGP
as the model and set the kernel function toScaleKernel
andbase_kernel
toRBFKernel
.After converting the two
FixedNoiseGP
models toModelListGP
, I converted toBatchedMultiOutputGPyTorchModel
usingmodel_list_to_batched(ModelListGP)
.After conversion, I found that the
base_kernel
of the converted model has becomeMaternKernel
, why is this? What should I do to keep thebase_kernel
unchanged?Beta Was this translation helpful? Give feedback.
All reactions