Basics of Bayesian Optimization
What is it?
Bayesian Optimization (BO) is an optimization technique that uses expensive trials to quickly arrive at an optimum point in some unknown function. The functions are called black box functions These are systems where the internal function is unknown. .
Why use it?
Since these black box functions have no model, Bayesian Optimization is used to find these unknown optimal values. In the photobioreactor system, a few different conditions will be tested, varying the parameters of each one. This information can be used for Bayesian Optimization to find a likely set of parameters for the optimal lutein extraction.
How does it work?
BO uses a combination of exploration A prediction is made at an unknown set of parameters to find out more about the function. and exploitation Information about known and predicted parameter sets are used to hone in on a possible optimum. . If the parameter set, known or guessed, is considered far away from the optimum, it will not be considered, but if it is considered close to a theoretical optimum, guesses will be made closer to that parameter set. BO is a coherent combination of an acquisition function and a surrogate model. Acquisition function can be thought of making an educated guess based off of the ground work a surrogate model has laid. The surrogate model effectively creates a pseudo function for the acquisition function to guess within.



