Sequential Model-based Optimization Algorithm: Difference between revisions
Jump to navigation
Jump to search
(Created page with "A Sequential Model-based Optimization Algorithm is an Optimization Algorithm that sequentially selects the next point to evaluate based on a model of the objective function. * <B>Context:</B> ** It aims to balance exploration and exploitation by using the model to guide search. ** It builds a surrogate model of the objective function and uses it to select the next point to evaluate. ** The model is updated as new points are evaluated, allowing it to impro...") |
m (Text replacement - "<B>Examples:</B>" to "<B>Example(s):</B>") |
||
(3 intermediate revisions by 2 users not shown) | |||
Line 12: | Line 12: | ||
** It Optimizes over the sequence of evaluations. | ** It Optimizes over the sequence of evaluations. | ||
** ... | ** ... | ||
* <B> | * <B>Example(s):</B> | ||
** [[Bayesian Optimization Algorithm]]. | ** [[Bayesian Optimization Algorithm]]. | ||
** [[Upper Confidence Bound Algorithm]]. | ** [[Upper Confidence Bound Algorithm]]. | ||
** [[Thompson Sampling]]. | ** [[Thompson Sampling]]. | ||
** [[Efficient Global Optimization]] | ** [[Efficient Global Optimization]] | ||
* <B>See:</B> [[Derivative-Free Optimization]], [[Model-Based Optimization]], [[Bayesian Optimization]] | * <B>See:</B> [[Derivative-Free Optimization]], [[Model-Based Optimization]], [[Bayesian Optimization]]. | ||
---- | ---- | ||
---- | ---- | ||
__NOTOC__ | |||
[[Category:Concept]] |
Latest revision as of 23:04, 28 December 2024
A Sequential Model-based Optimization Algorithm is an Optimization Algorithm that sequentially selects the next point to evaluate based on a model of the objective function.
- Context:
- It aims to balance exploration and exploitation by using the model to guide search.
- It builds a surrogate model of the objective function and uses it to select the next point to evaluate.
- The model is updated as new points are evaluated, allowing it to improve over time.
- It can use models such as: Gaussian Processes, Random Forests, and Bayesian Neural Networks.
- It evaluates points one at a time (or in small batches), sequentially updating the model.
- It aims to minimize simple regret over the sequence of evaluations.
- It Uses a model of the objective function to guide search.
- It Balances exploration and exploitation.
- It Evaluates points sequentially and updates model.
- It Optimizes over the sequence of evaluations.
- ...
- Example(s):
- See: Derivative-Free Optimization, Model-Based Optimization, Bayesian Optimization.