Replies: 2 comments 2 replies
-
What size / dimension are the three inputs |
Beta Was this translation helpful? Give feedback.
-
At a high level, BoTorch doesn't care about the internals of your model. The main interface the acquisition functions utilize to access model predictions is the A recent discussion that may be relevant: #2020 |
Beta Was this translation helpful? Give feedback.
-
Dear botorch developers and users,
I am a beginner of botorch and wondering how to use the pretrained GpyTorch model.
I constructed a new ExactGP model (MyExactGP) which combined with a neural network-based feature transformer by GpyTorch pacakge and trained it.
Then, I want to use the model to find an optimized objective value through ExpectedImprovement, ProbabilityOfImprovement, and UpperConfidenceBound.
Probably, I should custom SingleTaskGP-like model (MySingleTaskGP) which is a subclass of MyExactGP and GPyTorchModel), but the forward function (transformer) of my GpyTorch model receives multiple inputs for feature transformation.
How should I realize to receive multiple inputs?
Here is a pseudocode of MyExactGP.
Any suggestion would be helpful.
Thanks in advance.
Best regards,
Shin
Beta Was this translation helpful? Give feedback.
All reactions