Rahul Sharma (Editor)

Hyper basis function network

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

In machine learning, a Hyper basis function network, or HyperBF network, is a generalization of radial basis function (RBF) networks concept, where the Mahalanobis-like distance is used instead of Euclidean distance measure. Hyper basis function networks were first introduced by Poggio and Girosi in the 1990 paper “Networks for Approximation and Learning”.

Contents

Network Architecture

The typical HyperBF network structure consists of a real input vector x R n , a hidden layer of activation functions and a linear output layer. The output of the network is a scalar function of the input vector, ϕ : R n R , is given by

where N is a number of neurons in the hidden layer, μ j and a j are the center and weight of neuron j . The activation function ρ j ( | | x μ j | | ) at the HyperBF network takes the following form

where R j is a positive definite d × d matrix. Depending on the application, the following types of matrices R j are usually considered

  • R j = 1 2 σ 2 I d × d , where σ > 0 . This case corresponds to the regular RBF network.
  • R j = 1 2 σ j 2 I d × d , where σ j > 0 . In this case, the basis functions are radially symmetric, but are scaled with different width.
  • R j = d i a g ( 1 2 σ j 1 2 , . . . , 1 2 σ j z 2 ) I d × d , where σ j i > 0 . Every neuron has an elliptic shape with a varying size.
  • Positive definite matrix, but not diagonal.
  • Training

    Training HyperBF networks involves estimation of weights a j , shape and centers of neurons R j and μ j . Poggio and Girosi (1990) describe the training method with moving centers and adaptable neuron shapes. The outline of the method is provided below.

    Consider the quadratic loss of the network H [ ϕ ] = i = 1 N ( y i ϕ ( x i ) ) 2 . The following conditions must be satisfied at the optimum:

    where R j = W T W . Then in the gradient descent method the values of a j , μ j , W that minimize H [ ϕ ] can be found as a stable fixed point of the following dynamic system:

    where ω determines the rate of convergence.

    Overall, training HyperBF networks can be computationally challenging. Moreover, the high degree of freedom of HyperBF leads to overfitting and poor generalization. However, HyperBF networks have an important advantage that a small number of neurons is enough for learning complex functions.

    References

    Hyper basis function network Wikipedia