You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/index.md
+7-7
Original file line number
Diff line number
Diff line change
@@ -37,31 +37,31 @@ and a set of equations define additional experimental constraints, e.g.
37
37
In the context of multi-objective optimization BoFire allows to define a vector-valued optimization problem
38
38
39
39
$$
40
-
\min_{x \in \mathbb{X}} s(y(x))
40
+
\argmax_{x \in \mathbb{X}} s(y(x))
41
41
$$
42
42
43
43
where
44
44
45
-
* $x \in \mathbb{X}$ is again the experimental design space
45
+
* $\mathbb{X}$ is again the experimental design space
46
46
* $y = \{y_1, \ldots y_M\}$ are known functions describing your experimental outputs and
47
-
* $s = \{s_1, \ldots s_M\}$ are the objectives to be minimized, e.g. $s_1$ is the identity function if $y_1$ is to be minimized.
47
+
* $s = \{s_1, \ldots s_M\}$ are the objectives to be maximized. For instance, $s_1$ is the identity function if $y_1$ is to be maximized.
48
48
49
-
Since the objectives are in general conflicting, there is no point $x$ that simultaneously optimizes all objectives.
49
+
Since the objectives are usually conflicting, there is no point $x$ that simultaneously optimizes all objectives.
50
50
Instead the goal is to find the Pareto front of all optimal compromises.
51
51
52
52
A decision maker can then explore these compromises to get a deep understanding of the problem and make the best informed decision.
53
53
54
54
## Bayesian optimization
55
55
56
56
In the context of Bayesian optimization we want to simultaneously learn the unknown function $y(x)$ (exploration), while focusing the experimental effort on promising regions (exploitation).
57
-
This is done by using the experimental data to fit a probabilistic model $p(y|x, {data})$ that estimates the distribution of possible outcomes for $y$.
57
+
This is done by using the experimental data to fit a probabilistic model $p(y|x, \mathrm{data})$ that estimates the distribution of possible outcomes for $y$.
58
58
An acquisition function $a$ then formulates the desired trade-off between exploration and exploitation
59
59
60
60
$$
61
-
\min_{x \in \mathbb{X}} a(s(p_y(x)))
61
+
\argmax_{x \in \mathbb{X}} a(s(p_y(x)))
62
62
$$
63
63
64
-
and the minimizer $x_\mathrm{opt}$ of this acquisition function determines the next experiment $y(x)$ to run.
64
+
and the maximizer $x_\mathrm{opt}$ of this acquisition function determines the next experiment $y(x)$ to run.
65
65
66
66
When there are multiple competing objectives, the task is again to find a suitable approximation of the Pareto front.
0 commit comments