Radial Basis Surrogates Tutorial (1D)
The Radial Basis Surrogate model represents the interpolating function as a linear combination of basis functions, one for each training point. Let's say we are building a surrogate for:
\[f(x) = \log(x) \cdot x^2+x^3\]
Let's choose the Radial Basis Surrogate for 1D. First of all we have to import these two packages: Surrogates
and Plots
.
using Surrogates
using Plots
We choose to sample f in 100 points between 5 to 25 using sample
function. The sampling points are chosen using a Sobol sequence, this can be done by passing SobolSample()
to the sample
function.
f(x) = log(x) * x^2 + x^3
n_samples = 100
lower_bound = 5.0
upper_bound = 25.0
x = sort(sample(n_samples, lower_bound, upper_bound, SobolSample()))
y = f.(x)
scatter(x, y, label = "Sampled Points", xlims = (lower_bound, upper_bound), legend = :top)
plot!(x, y, label = "True function", legend = :top)
Building Surrogate
With our sampled points we can build the Radial Surrogate using the RadialBasis
function.
We can simply calculate radial_surrogate
for any value.
radial_surrogate = RadialBasis(x, y, lower_bound, upper_bound)
val = radial_surrogate(5.4)
206.85896909476287
We can also use cubic radial basis functions.
radial_surrogate = RadialBasis(x, y, lower_bound, upper_bound, rad = cubicRadial())
val = radial_surrogate(5.4)
206.6112295162602
Currently, available radial basis functions are linearRadial
(the default), cubicRadial
, multiquadricRadial
, and thinplateRadial
.
Now, we will simply plot radial_surrogate
:
plot(x, y, seriestype = :scatter, label = "Sampled points",
xlims = (lower_bound, upper_bound), legend = :top)
plot!(f, label = "True function", xlims = (lower_bound, upper_bound), legend = :top)
plot!(radial_surrogate, label = "Surrogate function",
xlims = (lower_bound, upper_bound), legend = :top)
Optimizing
Having built a surrogate, we can now use it to search for minima in our original function f
.
To optimize using our surrogate, we call surrogate_optimize!
method. We choose to use Stochastic RBF as the optimization technique and again Sobol sampling as the sampling technique.
surrogate_optimize!(
f, SRBF(), lower_bound, upper_bound, radial_surrogate, SobolSample())
scatter(x, y, label = "Sampled points", legend = :top)
plot!(f, label = "True function", xlims = (lower_bound, upper_bound), legend = :top)
plot!(radial_surrogate, label = "Surrogate function",
xlims = (lower_bound, upper_bound), legend = :top)
Radial Basis Surrogate Tutorial (ND)
First of all, we will define the Booth
function we are going to build the surrogate for:
\[f(x) = (x_1 + 2*x_2 - 7)^2 + (2*x_1 + x_2 - 5)^2\]
Notice, how its argument is a vector of numbers, one for each coordinate, and its output is a scalar.
using Plots
default(c = :matter, legend = false, xlabel = "x", ylabel = "y")
using Surrogates
function booth(x)
x1 = x[1]
x2 = x[2]
term1 = (x1 + 2 * x2 - 7)^2
term2 = (2 * x1 + x2 - 5)^2
y = term1 + term2
end
booth (generic function with 1 method)
Sampling
Let's define our bounds, this time we are working in two dimensions. In particular we want our first dimension x
to have bounds -5, 10
, and 0, 15
for the second dimension. We are taking 100 samples of the space using Sobol Sequences. We then evaluate our function on all of the sampling points.
n_samples = 100
lower_bound = [-5.0, 0.0]
upper_bound = [10.0, 15.0]
xys = sample(n_samples, lower_bound, upper_bound, SobolSample())
zs = booth.(xys)
100-element Vector{Float64}:
69.3204345703125
721.1173095703125
125.2188720703125
142.0938720703125
35.5704345703125
687.3673095703125
108.3438720703125
181.4688720703125
36.6251220703125
688.4219970703125
⋮
343.7383117675781
38.054718017578125
658.2109680175781
95.00784301757812
212.07815551757812
233.30374145507812
283.9287414550781
288.6748352050781
335.4326477050781
x, y = -5.0:10.0, 0.0:15.0
p1 = surface(x, y, (x1, x2) -> booth((x1, x2)))
xs = [xy[1] for xy in xys]
ys = [xy[2] for xy in xys]
scatter!(xs, ys, zs)
p2 = contour(x, y, (x1, x2) -> booth((x1, x2)))
scatter!(xs, ys)
plot(p1, p2, title = "True function")
Building a surrogate
Using the sampled points we build the surrogate, the steps are analogous to the 1-dimensional case.
radial_basis = RadialBasis(xys, zs, lower_bound, upper_bound)
(::RadialBasis{Surrogates.var"#1#2", Int64, Vector{Tuple{Float64, Float64}}, Vector{Float64}, Vector{Float64}, Vector{Float64}, LinearAlgebra.Transpose{Float64, Vector{Float64}}, Float64, Bool, Float64}) (generic function with 1 method)
p1 = surface(x, y, (x, y) -> radial_basis([x y]))
scatter!(xs, ys, zs, marker_z = zs)
p2 = contour(x, y, (x, y) -> radial_basis([x y]))
scatter!(xs, ys, marker_z = zs)
plot(p1, p2, title = "Surrogate")
Optimizing
With our surrogate, we can now search for the minima of the function.
Notice how the new sampled points, which were created during the optimization process, are appended to the xys
array. This is why its size changes.
size(xys)
(100,)
surrogate_optimize!(
booth, SRBF(), lower_bound, upper_bound, radial_basis, RandomSample(), maxiters = 50)
((0.9999924777048026, 3.000009711709799), 1.700763774483712e-10)
size(xys)
(205,)
p1 = surface(x, y, (x, y) -> radial_basis([x y]))
xs = [xy[1] for xy in xys]
ys = [xy[2] for xy in xys]
zs = booth.(xys)
scatter!(xs, ys, zs, marker_z = zs)
p2 = contour(x, y, (x, y) -> radial_basis([x y]))
scatter!(xs, ys, marker_z = zs)
plot(p1, p2)