import numpy as np
from math import inf
from spotpython.fun.objectivefunctions import Analytical
from spotpython.spot import spot
from spotpython.utils.init import fun_control_init, surrogate_control_init
="015" PREFIX
15 Kriging with Varying Correlation-p
This chapter illustrates the difference between Kriging models with varying p. The difference is illustrated with the help of the spotpython
package.
15.1 Example: Spot
Surrogate and the 2-dim Sphere Function
15.1.1 The Objective Function: 2-dim Sphere
- The
spotpython
package provides several classes of objective functions. - We will use an analytical objective function, i.e., a function that can be described by a (closed) formula: \[f(x, y) = x^2 + y^2\]
- The size of the
lower
bound vector determines the problem dimension. - Here we will use
np.array([-1, -1])
, i.e., a two-dim function.
= Analytical().fun_sphere
fun = fun_control_init(PREFIX=PREFIX,
fun_control = np.array([-1, -1]),
lower = np.array([1, 1])) upper
- Although the default
spot
surrogate model is an isotropic Kriging model, we will explicitly set thetheta
parameter to a value of1
for both dimensions. This is done to illustrate the difference between isotropic and anisotropic Kriging models.
=surrogate_control_init(n_p=1,
surrogate_control=2.0,) p_val
= spot.Spot(fun=fun,
spot_2 =fun_control,
fun_control=surrogate_control)
surrogate_control
spot_2.run()
spotpython tuning: 1.5904060546935205e-05 [#######---] 73.33%
spotpython tuning: 1.5904060546935205e-05 [########--] 80.00%
spotpython tuning: 1.5904060546935205e-05 [#########-] 86.67%
spotpython tuning: 1.5904060546935205e-05 [#########-] 93.33%
spotpython tuning: 1.2084513018724136e-05 [##########] 100.00% Done...
<spotpython.spot.spot.Spot at 0x1530b33b0>
15.1.2 Results
spot_2.print_results()
min y: 1.2084513018724136e-05
x0: -0.003294464459178357
x1: -0.0011095120305498227
[['x0', np.float64(-0.003294464459178357)],
['x1', np.float64(-0.0011095120305498227)]]
=True) spot_2.plot_progress(log_y
spot_2.surrogate.plot()
15.2 Example With Modified p
- We can use set
p
to a value other than2
to obtain a different Kriging model.
= surrogate_control_init(n_p=1,
surrogate_control =1.0)
p_val= spot.Spot(fun=fun,
spot_2_p1=fun_control,
fun_control=surrogate_control)
surrogate_control spot_2_p1.run()
spotpython tuning: 1.5904060546935205e-05 [#######---] 73.33%
spotpython tuning: 1.5904060546935205e-05 [########--] 80.00%
spotpython tuning: 1.5904060546935205e-05 [#########-] 86.67%
spotpython tuning: 1.5904060546935205e-05 [#########-] 93.33%
spotpython tuning: 1.2084513018724136e-05 [##########] 100.00% Done...
<spotpython.spot.spot.Spot at 0x1537cdb20>
- The search progress of the optimization with the anisotropic model can be visualized:
=True) spot_2_p1.plot_progress(log_y
spot_2_p1.print_results()
min y: 1.2084513018724136e-05
x0: -0.003294464459178357
x1: -0.0011095120305498227
[['x0', np.float64(-0.003294464459178357)],
['x1', np.float64(-0.0011095120305498227)]]
spot_2_p1.surrogate.plot()
15.2.1 Taking a Look at the p
Values
15.2.1.1 p
Values from the spot
Model
- We can check, which
p
values thespot
model has used: - The
p
values from the surrogate can be printed as follows:
spot_2_p1.surrogate.p
array([1.])
- Since the surrogate from the isotropic setting was stored as
spot_2
, we can also take a look at thetheta
value from this model:
spot_2.surrogate.p
array([2.])
15.3 Optimization of the p
Values
= surrogate_control_init(n_p=1,
surrogate_control =True)
optim_p= spot.Spot(fun=fun,
spot_2_pm=fun_control,
fun_control=surrogate_control)
surrogate_control spot_2_pm.run()
spotpython tuning: 1.7257202516906525e-05 [#######---] 73.33%
spotpython tuning: 1.7257202516906525e-05 [########--] 80.00%
spotpython tuning: 1.7257202516906525e-05 [#########-] 86.67%
spotpython tuning: 1.7257202516906525e-05 [#########-] 93.33%
spotpython tuning: 1.5016013698596226e-05 [##########] 100.00% Done...
<spotpython.spot.spot.Spot at 0x1532c83e0>
=True) spot_2_pm.plot_progress(log_y
spot_2_pm.print_results()
min y: 1.5016013698596226e-05
x0: -0.0038508851250580807
x1: 0.00043208500576001916
[['x0', np.float64(-0.0038508851250580807)],
['x1', np.float64(0.00043208500576001916)]]
spot_2_pm.surrogate.plot()
spot_2_pm.surrogate.p
[np.float64(1.4233686495123274)]
15.4 Optimization of Multiple p
Values
= surrogate_control_init(n_p=2,
surrogate_control =True)
optim_p= spot.Spot(fun=fun,
spot_2_pmo=fun_control,
fun_control=surrogate_control)
surrogate_control spot_2_pmo.run()
spotpython tuning: 1.9920765737363724e-05 [#######---] 73.33%
spotpython tuning: 1.9920765737363724e-05 [########--] 80.00%
spotpython tuning: 1.9920765737363724e-05 [#########-] 86.67%
spotpython tuning: 1.9920765737363724e-05 [#########-] 93.33%
spotpython tuning: 9.190384771923126e-06 [##########] 100.00% Done...
<spotpython.spot.spot.Spot at 0x1564b8aa0>
=True) spot_2_pmo.plot_progress(log_y
spot_2_pmo.print_results()
min y: 9.190384771923126e-06
x0: -0.0028761470296043675
x1: -0.0009582082425136512
[['x0', np.float64(-0.0028761470296043675)],
['x1', np.float64(-0.0009582082425136512)]]
spot_2_pmo.surrogate.plot()
spot_2_pmo.surrogate.p
[np.float64(1.1410902802804275), np.float64(1.5986000604554)]
15.5 Exercises
15.5.1 fun_branin
- Describe the function.
- The input dimension is
2
. The search range is \(-5 \leq x_1 \leq 10\) and \(0 \leq x_2 \leq 15\).
- The input dimension is
- Compare the results from
spotpython
runs with different options forp
. - Modify the termination criterion: instead of the number of evaluations (which is specified via
fun_evals
), the time should be used as the termination criterion. This can be done as follows (max_time=1
specifies a run time of one minute):
=inf,
fun_evals=1, max_time
15.5.2 fun_sin_cos
- Describe the function.
- The input dimension is
2
. The search range is \(-2\pi \leq x_1 \leq 2\pi\) and \(-2\pi \leq x_2 \leq 2\pi\).
- The input dimension is
- Compare the results from
spotpython
run a) with isotropic and b) anisotropic surrogate models. - Modify the termination criterion (
max_time
instead offun_evals
) as described forfun_branin
.
15.5.3 fun_runge
- Describe the function.
- The input dimension is
2
. The search range is \(-5 \leq x_1 \leq 5\) and \(-5 \leq x_2 \leq 5\).
- The input dimension is
- Compare the results from
spotpython
runs with different options forp
. - Modify the termination criterion (
max_time
instead offun_evals
) as described forfun_branin
.
15.5.4 fun_wingwt
- Describe the function.
- The input dimension is
10
. The search ranges are between 0 and 1 (values are mapped internally to their natural bounds).
- The input dimension is
- Compare the results from
spotpython
runs with different options forp
. - Modify the termination criterion (
max_time
instead offun_evals
) as described forfun_branin
.
15.6 Jupyter Notebook
Note
- The Jupyter-Notebook of this lecture is available on GitHub in the Hyperparameter-Tuning-Cookbook Repository