-
1. What I would like to do
2. What I did
3. How I understand nowIf I use the following code : candidate, _ = optimize_acqf(
aq, bounds=bounds, q=q,
num_restarts=num_restarts,
raw_samples=raw_samples,
) I think the flow is the following roughtly:
I think it is not correct , but I cannot what is right. I would appreciate it, If you could teach me. Thank you for reading. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
So the flow is
|
Beta Was this translation helpful? Give feedback.
So the flow is
raw_samples
pointsX
inbounds
.Z := alpha(X)
for each of these samples.num_restarts
points fromX
(without replacement) with probability proportional toexp(eta * Z)
, whereZ = (Y - mean(Y)) / std(Y)
andeta
is a temperature parameter.