About the "max_value_entropy_search.py" #969
-
In "_compute_information_gain" method of "max_value_entropy_search.py", what does "mean_M","variance_M" and "covar_mM" mean? Do they represent the values when there is no noise predicted by the model?And I don't know what "X_pending" means.
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
help me please, TAT |
Beta Was this translation helpful? Give feedback.
-
HI @LiuYang-1997, Thanks for asking. The notation is definitely not very human-readable. We basically follow the notation in the paper that is referred to, https://arxiv.org/pdf/1901.08275.pdf (appendix C). In a multi-fidelity setting, _m means values from low fidelities or from the fidelity other than the target fidelity, whereas _M denotes the variables from the highest fidelity (or the target fidelity). In a non-multi-fidelity setting, I think you interpretation is right: basically _m corresponds to the variables from noisy evaluation, whereas _M denotes the variables from the non_noisy evaluation, the function we try to optimize. X_pending are the design points that have been submitted to evaluate but their results of them are not returned yet. In this case, we don't want the acquisition function still returns these points to make the sampling more efficient |
Beta Was this translation helpful? Give feedback.
HI @LiuYang-1997,
Thanks for asking. The notation is definitely not very human-readable. We basically follow the notation in the paper that is referred to, https://arxiv.org/pdf/1901.08275.pdf (appendix C). In a multi-fidelity setting, _m means values from low fidelities or from the fidelity other than the target fidelity, whereas _M denotes the variables from the highest fidelity (or the target fidelity). In a non-multi-fidelity setting, I think you interpretation is right: basically _m corresponds to the variables from noisy evaluation, whereas _M denotes the variables from the non_noisy evaluation, the function we try to optimize.
X_pending are the design points that have been submitte…