EI_with_grad | R Documentation |
The function EI_with_grad
computes the
Expected Improvement at current location x
and its
gradient if wanted. The current minimum of the observations in
model
can be replaced by an arbitrary value (plugin),
which is useful in particular in noisy frameworks.
EI_with_grad( x, model, plugin = NULL, type = c("UK", "SK"), minimization = TRUE, proxy = FALSE, deriv = TRUE, out_list = deriv )
x |
A numeric vector representing the input for which one
wishes to calculate EI. The length d of this vector must
be equal to d, the dimension of the input space used for
the kriging results in |
model |
An object of class |
plugin |
Optional scalar: if provided, it replaces the minimum of the current observations. |
type |
|
minimization |
Logical specifying if EI is used in minimization or in maximization. |
proxy |
Optional logical. If |
deriv |
Logical. If |
out_list |
Logical When |
The Expected Improvement (EI) is defined as
E[{ min Y(X) - Y(x) }_+ | Y(X) = y(X)]
where X is the
current design of experiments and Y is the random
process assumed to have generated the objective function
y and z_+ = max(z, 0)
denotes the positive part of a real number z. The value
of EI is non-negative but can be numerically zero close to the
inputs used in model
. The EI and its gradient are
computed using their closed forms.
The expected improvement as defined in Details
(for EI
) or its gradient (for EI.grad
). If
plugin
is specified, its provided value will replace
min Y(X) in the formula. The EI and its
gradient are numeric vectors with length 1 and d.
David Ginsbourger, Olivier Roustant and Victor Picheny.
D. Ginsbourger (2009), Multiples métamodèles pour l'approximation et l'optimisation de fonctions numériques multivariables, Ph.D. thesis, Ècole Nationale Supérieure des Mines de Saint-Ètienne.
D.R. Jones, M. Schonlau, and W.J. Welch (1998), Efficient global optimization of expensive black-box functions, Journal of Global Optimization, 13, 455-492.
J. Mockus (1988), Bayesian Approach to Global Optimization. Kluwer academic publishers.
T.J. Santner, B.J. Williams, and W.J. Notz (2003), The design and analysis of computer experiments, Springer.
M. Schonlau (1997), Computer experiments and global optimization, Ph.D. thesis, University of Waterloo.
max_EI
, EGO.nsteps
,
qEI
, EI
and EI.grad
.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.