Hyper basis function network

From The Right Wiki
Jump to navigationJump to search

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”.[1][2]

Network Architecture

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

ϕ(x)=j=1Najρj(||xμj||)

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

ρj(||xμj||)=e(xμj)TRj(xμj)

where Rj is a positive definite d×d matrix. Depending on the application, the following types of matrices Rj are usually considered[3]

  • Rj=12σ2𝕀d×d, where σ>0. This case corresponds to the regular RBF network.
  • Rj=12σj2𝕀d×d, where σj>0. In this case, the basis functions are radially symmetric, but are scaled with different width.
  • Rj=diag(12σj12,...,12σjz2)𝕀d×d, where σji>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 aj, shape and centers of neurons Rj 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=1N(yiϕ*(xi))2. The following conditions must be satisfied at the optimum:

H(ϕ*)aj=0, H(ϕ*)μj=0, H(ϕ*)W=0

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

aj˙=ωH(ϕ*)aj, μj˙=ωH(ϕ*)μj, W˙=ωH(ϕ*)W

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.[2]

References

  1. T. Poggio and F. Girosi (1990). "Networks for Approximation and Learning". Proc. IEEE Vol. 78, No. 9:1481-1497.
  2. 2.0 2.1 R.N. Mahdi, E.C. Rouchka (2011). "Reduced HyperBF Networks: Regularization by Explicit Complexity Reduction and Scaled Rprop-Based Training". IEEE Transactions of Neural Networks 2:673–686.
  3. F. Schwenker, H.A. Kestler and G. Palm (2001). "Three Learning Phases for Radial-Basis-Function Network" Neural Netw. 14:439-458.