Bayesian Optimization Results Evaluation
8 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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.
0 commentaires
Réponse acceptée
Alan Weiss
le 24 Mai 2018
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 commentaires
Alan Weiss
le 19 Août 2019
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
le 30 Août 2019
Modifié(e) : muhamed ibrahim
le 30 Août 2019
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?
Plus de réponses (0)
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!