-
I have a question about this code.
What role does batch_number play when drawing the Pareto front? Thank you! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
Beta Was this translation helpful? Give feedback.
batch_number
here is just an index for the batch of points that was generated during the BO Loop (in a sequential setting withBATCH_SIZE=1
) this is identical to the trial index (modulo the first batch, which is a random exploration batch of size2*(1+problem_dim)
). Here this is used to color the points in the Pareto Front visualization so we can see how the optimization progresses in the outcome space.