Implementing custom surrogate model in botorch #2187
-
If I want to add some custom surrogate model, it needs to have:
For 1D problems, I can use What I tried:
How to combine the mean and covariance of 2 single 1d models to construct the joint distribution for 2d models? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @mamunm. For multi-output posteriors, you may want to use |
Beta Was this translation helpful? Give feedback.
Hi @mamunm. For multi-output posteriors, you may want to use
MultitaskMultivariateNormal
. See the example here: https://github.com/pytorch/botorch/blob/main/botorch/models/gpytorch.py#L418-L429