import numpy as np
from math import inf
from spotpython.fun.objectivefunctions import analytical
from spotpython.spot import spot
from scipy.optimize import shgo
from scipy.optimize import direct
from scipy.optimize import differential_evolution
from scipy.optimize import dual_annealing
from scipy.optimize import basinhopping
from spotpython.utils.init import fun_control_init, design_control_init, optimizer_control_init, surrogate_control_init
4 Sequential Parameter Optimization: Using scipy
Optimizers
As a default optimizer, spotpython
uses differential_evolution
from the scipy.optimize
package. Alternatively, any other optimizer from the scipy.optimize
package can be used. This chapter describes how different optimizers from the scipy optimize
package can be used on the surrogate. The optimization algorithms are available from https://docs.scipy.org/doc/scipy/reference/optimize.html
4.1 The Objective Function Branin
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. Here we will use the Branin function. The 2-dim Branin function is \[
y = a (x_2 - b x_1^2 + c x_1 - r) ^2 + s (1 - t) \cos(x_1) + s,
\] where values of \(a\), \(b\), \(c\), \(r\), \(s\) and \(t\) are: \(a = 1\), \(b = 5.1 / (4\pi^2)\), \(c = 5 / \pi\), \(r = 6\), \(s = 10\) and \(t = 1 / (8\pi)\).
It has three global minima: \(f(x) = 0.397887\) at \((-\pi, 12.275)\), \((\pi, 2.275)\), and \((9.42478, 2.475)\).
Input Domain: This function is usually evaluated on the square \(x_1 \in [-5, 10] \times x_2 \in [0, 15]\).
from spotpython.fun.objectivefunctions import analytical
= np.array([-5,-0])
lower = np.array([10,15])
upper = analytical(seed=123).fun_branin fun
4.2 The Optimizer
Differential Evolution (DE) from the scikit.optimize
package, see https://docs.scipy.org/doc/scipy/reference/generated/scipy.optimize.differential_evolution.html#scipy.optimize.differential_evolution is the default optimizer for the search on the surrogate. Other optimiers that are available in spotpython
, see https://docs.scipy.org/doc/scipy/reference/optimize.html#global-optimization.
dual_annealing
direct
shgo
basinhopping
These optimizers can be selected as follows:
from scipy.optimize import differential_evolution
= differential_evolution optimizer
As noted above, we will use differential_evolution
. The optimizer can use 1000
evaluations. This value will be passed to the differential_evolution
method, which has the argument maxiter
(int). It defines the maximum number of generations over which the entire differential evolution population is evolved, see https://docs.scipy.org/doc/scipy/reference/generated/scipy.optimize.differential_evolution.html#scipy.optimize.differential_evolution
Similar to the one-dimensional case, which is discussed in Section 7.5, we can use TensorBoard to monitor the progress of the optimization. We will use a similar code, only the prefix is different:
=fun_control_init(
fun_control= lower,
lower = upper,
upper = 20,
fun_evals = "04_DE_"
PREFIX
)=surrogate_control_init(
surrogate_control=len(lower)) n_theta
= spot.Spot(fun=fun,
spot_de =fun_control,
fun_control=surrogate_control)
surrogate_control spot_de.run()
spotpython tuning: 3.8004550038787155 [######----] 55.00%
spotpython tuning: 3.8004550038787155 [######----] 60.00%
spotpython tuning: 3.1588579885698627 [######----] 65.00%
spotpython tuning: 3.1342382932317037 [#######---] 70.00%
spotpython tuning: 2.8956615907630585 [########--] 75.00%
spotpython tuning: 0.42052429574482275 [########--] 80.00%
spotpython tuning: 0.4013351867835322 [########--] 85.00%
spotpython tuning: 0.399265616254338 [#########-] 90.00%
spotpython tuning: 0.399265616254338 [##########] 95.00%
spotpython tuning: 0.399265616254338 [##########] 100.00% Done...
<spotpython.spot.spot.Spot at 0x16bc6f560>
4.2.1 TensorBoard
If the prefix
argument in fun_control_init()
is not None
(as above, where the prefix
was set to 04_DE_
) , we can start TensorBoard in the background with the following command:
tensorboard --logdir="./runs"
We can access the TensorBoard web server with the following URL:
http://localhost:6006/
The TensorBoard plot illustrates how spotpython
can be used as a microscope for the internal mechanisms of the surrogate-based optimization process. Here, one important parameter, the learning rate \(\theta\) of the Kriging surrogate is plotted against the number of optimization steps.
4.3 Print the Results
spot_de.print_results()
min y: 0.399265616254338
x0: 3.151170754781285
x1: 2.2981660114765448
[['x0', 3.151170754781285], ['x1', 2.2981660114765448]]
4.4 Show the Progress
=True) spot_de.plot_progress(log_y
spot_de.surrogate.plot()
4.5 Exercises
4.5.1 dual_annealing
- Describe the optimization algorithm, see scipy.optimize.dual_annealing.
- Use the algorithm as an optimizer on the surrogate.
We can run spotpython with the dual_annealing
optimizer as follows:
= spot.Spot(fun=fun,
spot_da =fun_control,
fun_control=dual_annealing,
optimizer=surrogate_control)
surrogate_control
spot_da.run()
spot_da.print_results()=True)
spot_da.plot_progress(log_y spot_da.surrogate.plot()
spotpython tuning: 3.8004480172281534 [######----] 55.00%
spotpython tuning: 3.8004480172281534 [######----] 60.00%
spotpython tuning: 3.158996247273234 [######----] 65.00%
spotpython tuning: 3.134218255713952 [#######---] 70.00%
spotpython tuning: 2.8926591957342467 [########--] 75.00%
spotpython tuning: 0.4189006494820333 [########--] 80.00%
spotpython tuning: 0.4019392204560983 [########--] 85.00%
spotpython tuning: 0.39922543271904765 [#########-] 90.00%
spotpython tuning: 0.39922543271904765 [##########] 95.00%
spotpython tuning: 0.39922543271904765 [##########] 100.00% Done...
min y: 0.39922543271904765
x0: 3.1506699177492252
x1: 2.298631597428197
4.5.2 direct
- Describe the optimization algorithm
- Use the algorithm as an optimizer on the surrogate
We can run spotpython with the direct
optimizer as follows:
= spot.Spot(fun=fun,
spot_di =fun_control,
fun_control=direct,
optimizer=surrogate_control)
surrogate_control
spot_di.run()
spot_di.print_results()=True)
spot_di.plot_progress(log_y spot_di.surrogate.plot()
spotpython tuning: 3.812970247994418 [######----] 55.00%
spotpython tuning: 3.812970247994418 [######----] 60.00%
spotpython tuning: 3.162514679816068 [######----] 65.00%
spotpython tuning: 3.1189615135325983 [#######---] 70.00%
spotpython tuning: 2.6597698275013038 [########--] 75.00%
spotpython tuning: 0.3984917773445744 [########--] 80.00%
spotpython tuning: 0.3984917773445744 [########--] 85.00%
spotpython tuning: 0.3984917773445744 [#########-] 90.00%
spotpython tuning: 0.3984917773445744 [##########] 95.00%
spotpython tuning: 0.3984917773445744 [##########] 100.00% Done...
min y: 0.3984917773445744
x0: 3.137860082304525
x1: 2.3010973936899863
4.5.3 shgo
- Describe the optimization algorithm
- Use the algorithm as an optimizer on the surrogate
We can run spotpython with the direct
optimizer as follows:
= spot.Spot(fun=fun,
spot_sh =fun_control,
fun_control=shgo,
optimizer=surrogate_control)
surrogate_control
spot_sh.run()
spot_sh.print_results()=True)
spot_sh.plot_progress(log_y spot_sh.surrogate.plot()
spotpython tuning: 3.8004562736456844 [######----] 55.00%
spotpython tuning: 3.8004562736456844 [######----] 60.00%
spotpython tuning: 3.158996879015902 [######----] 65.00%
spotpython tuning: 3.1341298968229996 [#######---] 70.00%
spotpython tuning: 2.8919915800445954 [########--] 75.00%
spotpython tuning: 0.4173165753511867 [########--] 80.00%
spotpython tuning: 0.40097732409794773 [########--] 85.00%
spotpython tuning: 0.3993020098909934 [#########-] 90.00%
spotpython tuning: 0.3993020098909934 [##########] 95.00%
spotpython tuning: 0.3993020098909934 [##########] 100.00% Done...
min y: 0.3993020098909934
x0: 3.1510894339439672
x1: 2.298936853041466
4.5.4 basinhopping
- Describe the optimization algorithm
- Use the algorithm as an optimizer on the surrogate
We can run spotpython with the direct
optimizer as follows:
= spot.Spot(fun=fun,
spot_bh =fun_control,
fun_control=basinhopping,
optimizer=surrogate_control)
surrogate_control
spot_bh.run()
spot_bh.print_results()=True)
spot_bh.plot_progress(log_y spot_bh.surrogate.plot()
spotpython tuning: 3.800453600053931 [######----] 55.00%
spotpython tuning: 3.800453600053931 [######----] 60.00%
spotpython tuning: 3.1590141837294237 [######----] 65.00%
spotpython tuning: 3.1341341806066314 [#######---] 70.00%
spotpython tuning: 2.8914331943522242 [########--] 75.00%
spotpython tuning: 0.41214245125719984 [########--] 80.00%
spotpython tuning: 0.40113843843078634 [########--] 85.00%
spotpython tuning: 0.3992327747775164 [#########-] 90.00%
spotpython tuning: 0.3992327747775164 [##########] 95.00%
spotpython tuning: 0.3992327747775164 [##########] 100.00% Done...
min y: 0.3992327747775164
x0: 3.15016404734246
x1: 2.2998320162156896
4.5.5 Performance Comparison
Compare the performance and run time of the 5 different optimizers:
differential_evolution
dual_annealing
direct
shgo
basinhopping
.
The Branin function has three global minima:
- \(f(x) = 0.397887\) at
- \((-\pi, 12.275)\),
- \((\pi, 2.275)\), and
- \((9.42478, 2.475)\).
- Which optima are found by the optimizers?
- Does the
seed
argument infun = analytical(seed=123).fun_branin
change this behavior?
4.6 Jupyter Notebook
- The Jupyter-Notebook of this chapter is available on GitHub in the Hyperparameter-Tuning-Cookbook Repository