SG++-Doxygen-Documentation
|
On this page, we look at an example application of the sgpp::optimization module.
Versions of the example are given in all languages currently supported by SG++: C++, Python, Java, and MATLAB.
The example interpolates a bivariate test function with B-splines instead of piecewise linear basis functions to obtain a smoother interpolant. The resulting sparse grid function is then minimized with the method of steepest descent. For comparison, we also minimize the objective function with Nelder-Mead's method.
First, we import pysgpp and the required modules.
The function \(f\colon [0, 1]^d \to \mathbb{R}\) to be minimized is called objective function and has to derive from pysgpp.OptScalarFunction. In the constructor, we give the dimensionality of the domain (in this case \(d = 2\)). The eval method evaluates the objective function and returns the function value \(f(\vec{x})\) for a given point \(\vec{x} \in [0, 1]^d\).
We have to disable OpenMP within pysgpp since it interferes with SWIG's director feature.
Here, we define some parameters: objective function, dimensionality, B-spline degree, maximal number of grid points, and adaptivity.
First, we define a grid with modified B-spline basis functions and an iterative grid generator, which can generate the grid adaptively.
With the iterative grid generator, we generate adaptively a sparse grid.
Then, we hierarchize the function values to get hierarchical B-spline coefficients of the B-spline sparse grid interpolant \(\tilde{f}\colon [0, 1]^d \to \mathbb{R}\).
We define the interpolant \(\tilde{f}\) and its gradient \(\nabla\tilde{f}\) for use with the gradient method (steepest descent). Of course, one can also use other optimization algorithms from sgpp::optimization::optimizer.
The gradient method needs a starting point. We use a point of our adaptively generated sparse grid as starting point. More specifically, we use the point with the smallest (most promising) function value and save it in x0.
We apply the gradient method and print the results.
For comparison, we apply the classical gradient-free Nelder-Mead method directly to the objective function \(f\).
The example program outputs the following results:
sgpp::optimization example program started. -------------------------------------------------------------------------------- Generating grid... Adaptive grid generation (Ritter-Novak)... 100.0% (N = 29, k = 3) Done in 3ms. -------------------------------------------------------------------------------- Hierarchizing... Solving linear system (automatic method)... estimated nnz ratio: 59.8% Solving linear system (Armadillo)... constructing matrix (100.0%) nnz ratio: 58.0% solving with Armadillo Done in 0ms. Done in 1ms. -------------------------------------------------------------------------------- Optimizing smooth interpolant... x0 = [0.625, 0.75] f(x0) = -1.81786, ft(x0) = -1.81786 Optimizing (gradient method)... 9 steps, f(x) = -2.000780 Done in 1ms. xOpt = [0.589526, 0.673268] f(xOpt) = -1.99999, ft(xOpt) = -2.00078 -------------------------------------------------------------------------------- Optimizing objective function (for comparison)... Optimizing (Nelder-Mead)... 280 steps, f(x) = -2.000000 Done in 2ms. xOptNM = [0.589049, 0.673198] f(xOptNM) = -2, ft(xOptNM) = -2.00077 -------------------------------------------------------------------------------- sgpp::optimization example program terminated.
We see that both the gradient-based optimization of the smooth sparse grid interpolant and the gradient-free optimization of the objective function find reasonable approximations of the minimum, which lies at \((3\pi/16, 3\pi/14) \approx (0.58904862, 0.67319843)\).