Harman Patil (Editor)

Radial basis function network

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit
Radial basis function network

In the field of mathematical modeling, a radial basis function network is an artificial neural network that uses radial basis functions as activation functions. The output of the network is a linear combination of radial basis functions of the inputs and neuron parameters. Radial basis function networks have many uses, including function approximation, time series prediction, classification, and system control. They were first formulated in a 1988 paper by Broomhead and Lowe, both researchers at the Royal Signals and Radar Establishment.

Contents

Network architecture

Radial basis function (RBF) networks typically have three layers: an input layer, a hidden layer with a non-linear RBF activation function and a linear output layer. The input can be modeled as a vector of real numbers x R n . The output of the network is then a scalar function of the input vector, φ : R n R , and is given by

φ ( x ) = i = 1 N a i ρ ( | | x c i | | )

where N is the number of neurons in the hidden layer, c i is the center vector for neuron i , and a i is the weight of neuron i in the linear output neuron. Functions that depend only on the distance from a center vector are radially symmetric about that vector, hence the name radial basis function. In the basic form all inputs are connected to each hidden neuron. The norm is typically taken to be the Euclidean distance (although the Mahalanobis distance appears to perform better in general) and the radial basis function is commonly taken to be Gaussian

ρ ( x c i ) = exp [ β x c i 2 ] .

The Gaussian basis functions are local to the center vector in the sense that

lim | | x | | ρ ( x c i ) = 0

i.e. changing parameters of one neuron has only a small effect for input values that are far away from the center of that neuron.

Given certain mild conditions on the shape of the activation function, RBF networks are universal approximators on a compact subset of R n . This means that an RBF network with enough hidden neurons can approximate any continuous function with arbitrary precision.

The parameters a i , c i , and β i are determined in a manner that optimizes the fit between φ and the data.

Normalized architecture

In addition to the above unnormalized architecture, RBF networks can be normalized. In this case the mapping is

φ ( x )   = d e f   i = 1 N a i ρ ( x c i ) i = 1 N ρ ( x c i ) = i = 1 N a i u ( x c i )

where

u ( x c i )   = d e f   ρ ( x c i ) j = 1 N ρ ( x c j )

is known as a "normalized radial basis function".

Theoretical motivation for normalization

There is theoretical justification for this architecture in the case of stochastic data flow. Assume a stochastic kernel approximation for the joint probability density

P ( x y ) = 1 N i = 1 N ρ ( x c i ) σ ( | y e i | )

where the weights c i and e i are exemplars from the data and we require the kernels to be normalized

ρ ( x c i ) d n x = 1

and

σ ( | y e i | ) d y = 1 .

The probability densities in the input and output spaces are

P ( x ) = P ( x y ) d y = 1 N i = 1 N ρ ( x c i )

and

The expectation of y given an input x is

φ ( x )   = d e f   E ( y x ) = y P ( y x ) d y

where

P ( y x )

is the conditional probability of y given x . The conditional probability is related to the joint probability through Bayes theorem

P ( y x ) = P ( x y ) P ( x )

which yields

φ ( x ) = y P ( x y ) P ( x ) d y .

This becomes

φ ( x ) = i = 1 N e i ρ ( x c i ) i = 1 N ρ ( x c i ) = i = 1 N e i u ( x c i )

when the integrations are performed.

Local linear models

It is sometimes convenient to expand the architecture to include local linear models. In that case the architectures become, to first order,

φ ( x ) = i = 1 N ( a i + b i ( x c i ) ) ρ ( x c i )

and

φ ( x ) = i = 1 N ( a i + b i ( x c i ) ) u ( x c i )

in the unnormalized and normalized cases, respectively. Here b i are weights to be determined. Higher order linear terms are also possible.

This result can be written

φ ( x ) = i = 1 2 N j = 1 n e i j v i j ( x c i )

where

e i j = { a i , if  i [ 1 , N ] b i j , if  i [ N + 1 , 2 N ]

and

v i j ( x c i )   = d e f   { δ i j ρ ( x c i ) , if  i [ 1 , N ] ( x i j c i j ) ρ ( x c i ) , if  i [ N + 1 , 2 N ]

in the unnormalized case and

v i j ( x c i )   = d e f   { δ i j u ( x c i ) , if  i [ 1 , N ] ( x i j c i j ) u ( x c i ) , if  i [ N + 1 , 2 N ]

in the normalized case.

Here δ i j is a Kronecker delta function defined as

δ i j = { 1 , if  i = j 0 , if  i j .

Training

RBF networks are typically trained by a two-step algorithm. In the first step, the center vectors c i of the RBF functions in the hidden layer are chosen. This step can be performed in several ways; centers can be randomly sampled from some set of examples, or they can be determined using k-means clustering. Note that this step is unsupervised. A third backpropagation step can be performed to fine-tune all of the RBF net's parameters.

The second step simply fits a linear model with coefficients w i to the hidden layer's outputs with respect to some objective function. A common objective function, at least for regression/function estimation, is the least squares function:

K ( w )   = d e f   t = 1 K t ( w )

where

K t ( w )   = d e f   [ y ( t ) φ ( x ( t ) , w ) ] 2 .

We have explicitly included the dependence on the weights. Minimization of the least squares objective function by optimal choice of weights optimizes accuracy of fit.

There are occasions in which multiple objectives, such as smoothness as well as accuracy, must be optimized. In that case it is useful to optimize a regularized objective function such as

H ( w )   = d e f   K ( w ) + λ S ( w )   = d e f   t = 1 H t ( w )

where

S ( w )   = d e f   t = 1 S t ( w )

and

H t ( w )   = d e f   K t ( w ) + λ S t ( w )

where optimization of S maximizes smoothness and λ is known as a regularization parameter.

Interpolation

RBF networks can be used to interpolate a function y : R n R when the values of that function are known on finite number of points: y ( x i ) = b i , i = 1 , , N . Taking the known points x i to be the centers of the radial basis functions and evaluating the values of the basis functions at the same points g i j = ρ ( | | x j x i | | ) the weights can be solved from the equation

[ g 11 g 12 g 1 N g 21 g 22 g 2 N g N 1 g N 2 g N N ] [ w 1 w 2 w N ] = [ b 1 b 2 b N ]

It can be shown that the interpolation matrix in the above equation is non-singular, if the points x i are distinct, and thus the weights w can be solved by simple linear algebra:

w = G 1 b

Function approximation

If the purpose is not to perform strict interpolation but instead more general function approximation or classification the optimization is somewhat more complex because there is no obvious choice for the centers. The training is typically done in two phases first fixing the width and centers and then the weights. This can be justified by considering the different nature of the non-linear hidden neurons versus the linear output neuron.

Training the basis function centers

Basis function centers can be randomly sampled among the input instances or obtained by Orthogonal Least Square Learning Algorithm or found by clustering the samples and choosing the cluster means as the centers.

The RBF widths are usually all fixed to same value which is proportional to the maximum distance between the chosen centers.

Pseudoinverse solution for the linear weights

After the centers c i have been fixed, the weights that minimize the error at the output are computed with a linear pseudoinverse solution:

w = G + b ,

where the entries of G are the values of the radial basis functions evaluated at the points x i : g j i = ρ ( | | x j c i | | ) .

The existence of this linear solution means that unlike multi-layer perceptron (MLP) networks, RBF networks have a unique local minimum (when the centers are fixed).

Gradient descent training of the linear weights

Another possible training algorithm is gradient descent. In gradient descent training, the weights are adjusted at each time step by moving them in a direction opposite from the gradient of the objective function (thus allowing the minimum of the objective function to be found),

w ( t + 1 ) = w ( t ) ν d d w H t ( w )

where ν is a "learning parameter."

For the case of training the linear weights, a i , the algorithm becomes

a i ( t + 1 ) = a i ( t ) + ν [ y ( t ) φ ( x ( t ) , w ) ] ρ ( x ( t ) c i )

in the unnormalized case and

a i ( t + 1 ) = a i ( t ) + ν [ y ( t ) φ ( x ( t ) , w ) ] u ( x ( t ) c i )

in the normalized case.

For local-linear-architectures gradient-descent training is

e i j ( t + 1 ) = e i j ( t ) + ν [ y ( t ) φ ( x ( t ) , w ) ] v i j ( x ( t ) c i )

Projection operator training of the linear weights

For the case of training the linear weights, a i and e i j , the algorithm becomes

a i ( t + 1 ) = a i ( t ) + ν [ y ( t ) φ ( x ( t ) , w ) ] ρ ( x ( t ) c i ) i = 1 N ρ 2 ( x ( t ) c i )

in the unnormalized case and

a i ( t + 1 ) = a i ( t ) + ν [ y ( t ) φ ( x ( t ) , w ) ] u ( x ( t ) c i ) i = 1 N u 2 ( x ( t ) c i )

in the normalized case and

e i j ( t + 1 ) = e i j ( t ) + ν [ y ( t ) φ ( x ( t ) , w ) ] v i j ( x ( t ) c i ) i = 1 N j = 1 n v i j 2 ( x ( t ) c i )

in the local-linear case.

For one basis function, projection operator training reduces to Newton's method.

Logistic map

The basic properties of radial basis functions can be illustrated with a simple mathematical map, the logistic map, which maps the unit interval onto itself. It can be used to generate a convenient prototype data stream. The logistic map can be used to explore function approximation, time series prediction, and control theory. The map originated from the field of population dynamics and became the prototype for chaotic time series. The map, in the fully chaotic regime, is given by

x ( t + 1 )   = d e f   f [ x ( t ) ] = 4 x ( t ) [ 1 x ( t ) ]

where t is a time index. The value of x at time t+1 is a parabolic function of x at time t. This equation represents the underlying geometry of the chaotic time series generated by the logistic map.

Generation of the time series from this equation is the forward problem. The examples here illustrate the inverse problem; identification of the underlying dynamics, or fundamental equation, of the logistic map from exemplars of the time series. The goal is to find an estimate

x ( t + 1 ) = f [ x ( t ) ] φ ( t ) = φ [ x ( t ) ]

for f.

Unnormalized radial basis functions

The architecture is

φ ( x )   = d e f   i = 1 N a i ρ ( x c i )

where

ρ ( x c i ) = exp [ β x c i 2 ] = exp [ β ( x ( t ) c i ) 2 ] .

Since the input is a scalar rather than a vector, the input dimension is one. We choose the number of basis functions as N=5 and the size of the training set to be 100 exemplars generated by the chaotic time series. The weight β is taken to be a constant equal to 5. The weights c i are five exemplars from the time series. The weights a i are trained with projection operator training:

a i ( t + 1 ) = a i ( t ) + ν [ x ( t + 1 ) φ ( x ( t ) , w ) ] ρ ( x ( t ) c i ) i = 1 N ρ 2 ( x ( t ) c i )

where the learning rate ν is taken to be 0.3. The training is performed with one pass through the 100 training points. The rms error is 0.15.

Normalized radial basis functions

The normalized RBF architecture is

φ ( x )   = d e f   i = 1 N a i ρ ( x c i ) i = 1 N ρ ( x c i ) = i = 1 N a i u ( x c i )

where

u ( x c i )   = d e f   ρ ( x c i ) i = 1 N ρ ( x c i ) .

Again:

ρ ( x c i ) = exp [ β x c i 2 ] = exp [ β ( x ( t ) c i ) 2 ] .

Again, we choose the number of basis functions as five and the size of the training set to be 100 exemplars generated by the chaotic time series. The weight β is taken to be a constant equal to 6. The weights c i are five exemplars from the time series. The weights a i are trained with projection operator training:

a i ( t + 1 ) = a i ( t ) + ν [ x ( t + 1 ) φ ( x ( t ) , w ) ] u ( x ( t ) c i ) i = 1 N u 2 ( x ( t ) c i )

where the learning rate ν is again taken to be 0.3. The training is performed with one pass through the 100 training points. The rms error on a test set of 100 exemplars is 0.084, smaller than the unnormalized error. Normalization yields accuracy improvement. Typically accuracy with normalized basis functions increases even more over unnormalized functions as input dimensionality increases.

Time series prediction

Once the underlying geometry of the time series is estimated as in the previous examples, a prediction for the time series can be made by iteration:

φ ( 0 ) = x ( 1 ) x ( t ) φ ( t 1 ) x ( t + 1 ) φ ( t ) = φ [ φ ( t 1 ) ] .

A comparison of the actual and estimated time series is displayed in the figure. The estimated times series starts out at time zero with an exact knowledge of x(0). It then uses the estimate of the dynamics to update the time series estimate for several time steps.

Note that the estimate is accurate for only a few time steps. This is a general characteristic of chaotic time series. This is a property of the sensitive dependence on initial conditions common to chaotic time series. A small initial error is amplified with time. A measure of the divergence of time series with nearly identical initial conditions is known as the Lyapunov exponent.

Control of a chaotic time series

We assume the output of the logistic map can be manipulated through a control parameter c [ x ( t ) , t ] such that

x ( t + 1 ) = 4 x ( t ) [ 1 x ( t ) ] + c [ x ( t ) , t ] .

The goal is to choose the control parameter in such a way as to drive the time series to a desired output d ( t ) . This can be done if we choose the control paramer to be

c [ x ( t ) , t ]   = d e f   φ [ x ( t ) ] + d ( t + 1 )

where

y [ x ( t ) ] f [ x ( t ) ] = x ( t + 1 ) c [ x ( t ) , t ]

is an approximation to the underlying natural dynamics of the system.

The learning algorithm is given by

a i ( t + 1 ) = a i ( t ) + ν ε u ( x ( t ) c i ) i = 1 N u 2 ( x ( t ) c i )

where

ε   = d e f   f [ x ( t ) ] φ [ x ( t ) ] = x ( t + 1 ) c [ x ( t ) , t ] φ [ x ( t ) ] = x ( t + 1 ) d ( t + 1 ) .

References

Radial basis function network Wikipedia