-
Currently, I am coding an acquisition function for multi-objective Bayesian optimization.
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
The |
Beta Was this translation helpful? Give feedback.
The
mu
andsigma
in this code are just pytorch tensors, the order of the elements corresponds to the inputs to theModel.posterior()
call. So you just need simple indexing:mu[i]
andsigma[i]
.