Bayesian Optimization Results Evaluation

I am trying to learn and understand Bayesian Optimization. My code is working like in the documentation page but what is the difference between best observed feasible point and best estimated feasible point? Which result should I consider? Thanks for the help.

 채택된 답변

Alan Weiss
Alan Weiss 2018년 5월 24일

1 개 추천

The difference is that the algorithm makes a model of the objective function, and this model assumes that observations can contain noise (errors). So the best observed feasible point is the one with the lowest returned value from objective function evaluations. The best estimated feasible point is the one that has the lowest estimated mean value according to the latest model of the objective function.
If your objective function is deterministic, then you can set the 'IsObjectiveDeterministic' name-value pair to true, and then these two points are likely to coincide.
Alan Weiss
MATLAB mathematical toolbox documentation

댓글 수: 6

MB
MB 2018년 5월 24일
Thank you very much.
muhamed ibrahim
muhamed ibrahim 2019년 8월 14일
Does bayesian optimization in matlab consider observations are noisy by default? what can I do to run the bayesian optimizer in matlab cosidering the observations are noise free?
Alan Weiss
Alan Weiss 2019년 8월 14일
Yes. See the IsObjectiveDeterministic option.
Alan Weiss
MATLAB mathematical toolbox documentation
muhamed ibrahim
muhamed ibrahim 2019년 8월 17일
Thank You so much. I still need to have the bayesian optimization algorithm stop the iterations not after a specific number of iterations like (30 as default) but to stop when observed objective value reaches a specific value like 0.
Alan Weiss
Alan Weiss 2019년 8월 19일
To stop an optimization early, use the OutputFcn name-value pair. For details, see Bayesian Optimization Output Functions.
Alan Weiss
MATLAB mathematical toolbox documentation
muhamed ibrahim
muhamed ibrahim 2019년 8월 30일
편집: muhamed ibrahim 2019년 8월 30일
regardin what you typed "and this model assumes that observations can contain noise (errors).
"How does Matlab compute this amount of noise? is it an arbitarary value?

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

질문:

MB
2018년 5월 23일

편집:

2019년 8월 30일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by