Home Page

Manual

- overview

- data structures

- preprocessing

- networks

- classification

- graphing

- examples

 

Examples

Very Simple
2D Classification - neural network
Classification - non-neural algorithms
MLP vs Cascade-Correlation
Time-sequence prediction
QSVD-ICA preprocessing

Bayesian Framework for function approximation

Examples of using NetMaker and neural network applications.

 

Bayesian Framework for function approximation

Introduction
Training and the bias-variance problem
BF explained on the function approximation example
Parameterizations of Electromagnetic Nucleon Form Factors
   - numerical results

Download example (9kB) - Simple project contains network ready for training in one of many possible configurations explained below. Try to experiment with different setups and data sets included in the package.

Introduction:

This example illustrates very basic neural network application - the approximation of a function:

output = net(input) ≈ fmodel(input).

Network is trained on a small amount of events generated according to the underlying model fmodel, with additive gaussian noise. Training with Bayesian Framework (BF) features incorporated is presented. Then the real application of BF training for physics problem of Form Factor fitting is shown.

Files included in this example:

  • bf_approx.NetPrj - project file;
  • fn_tgt.prn - target function values, two rows contain input and fmodel(input) respectively;
  • fn_tr_*.prn - training data points tmeas(input) ± σt, each file contain points differently distributed over the input domain, with different measurement uncertainties σt; three columns in the file contain: input, tmeas(input), and σt.
  • Training and the bias-variance problem

    Network is trained on a limited number of data points:

    D : [inputi, ti = tmeas(inputi) ± σt],

    shown in Fig.1 as a blue dots. These points represent a series of N imprecise measurements of the underlying function fmodel(input) (black curve), that is unknown to the experimenter. One can build a large network that could be trained to a low value of the error on data, defined as:

    Ed  =  1/N ⋅ Σe(ti - outputi),    i = 1...N,

    where e(⋅) is usually taken as (ti - outputi)2 or χ2 = (ti - outputi)2/σti2, see also error functions section. By taking care of low Ed value one can easily end up with the network overfitted to the particular set of training points (like the red curve in Fig.1). In the extreme case it is possible to build and train the network with Ed = 0, with net(input) crossing all the training points.
         If it would be possible to repeat the experiment and obtain another, independent series of measurements, then one could train another network that closely fit the new data (low Ed). Then one can imagine a lot (L) of such networks, each trained on a different, independent set of measurements. Averaged output of these networks <netl(input)> should approximate very well the underlaying model (if the mean of many measurements <tl(inputi)> ≈ fmodel(inputi)). We call this low biased fit, with bias defined as:

    bias2 = 1/N ⋅ Σ{<netl(inputi)> - <tl(inputi)>}2.

    However, networks used to make such a nice fit have quite a large variance:

    var2 = <varl2>,    varl2 = 1/N ⋅ Σ{netl(inputi) - <netl(inputi)>}2

    - each network is well adjusted only for its own training data (and its noise). We would like to have the solution that does not depend on the statistical fluctuations of the measurements so we need to keep low variance as well as low bias. In practice it is not possible to get zero variance without increasing bias - at some point fit becomes independent not only from the noise but also from the model (underfitted green curve in Fig.1). Moreover, it is rare in practical applications to have more than one series of measurements... So we try to keep a reasonable balance between bias and variance by careful training of appropriately sized network, using just one set of points.

    data, overfit, underfit
    Fig. 1. The bias - variance problem illustration.

    Network size has an impact on the resulting fit: network with too small number of hidden units is not capable of representing the model (low variance, high bias); oversized network may capture noise fluctuations (high variance, lower bias); something in the middle should be constrained enough to give smooth output while still being able to fit significant features of training data (low variance, low bias). Strong aid of the Bayesian Framework is the ability to judge and compare different solutions with the statistical measure (evidence) basing on the training data set only:

    evidence  ~  P(netl | D).

    Another well known way to deal with the bias-variance problem is is to apply weight regularization. It is done with a special term Ew, that penalizes large weight values, added to the error function:

    E  =  Ed + α⋅Ew

    where α is the regularization factor. NetMaker uses simple weight decay: Ew = 1/2⋅Σwi2. Constraint put on the weight values makes the network output function smooth even in case of oversized hidden layers. Again, depending on the regularization factor α value, resulting network output function may be under- or overfitted to the data. Usual approach is to adjust manually the value of α, basing on trial and error experience, but, here BF also can help:

  • networks trained with different α values may be compared by evidence;
  • α value may be optimized during the training.
  • Finally, BF gives one more hint on the solution quality: the uncertainty of the network output σnetl(input), that reflects the weight distribution given the particular training set, regularization factor and used network model: P(w | D, α, netl).

    Much more details on the BF methodology can be found at David MacKay site, in great book by C.M. Bishop "Neural Networks for Pattern Recognition", and also in our humble paper.

    BF explained on the function approximation example

    This section shows the function approximation done with neural network with BF help. Training data was generated according to the model shown in Fig.1, with diferent configurations of noise added to data points.
       First exercise shows the stability of the regularization factor α optimization. This feature is controlled with OptimizeDecay switch in training algorithm parameters. Optimal value of α is evaluated every 20 training iterations (except first 1000 iterations, when it is fixed at the initial level) according to the formula:

    αk+1 = γ(αk) / 2⋅Ew,    γ(αk) = Σi[λi/(λi + αk)]

    where λi are the eigenvalues of the Hessian matrix H = [∂2E(wi,wj)/∂wiwj]. There are several modes of the Hessian matrix estimation implemented in NetMaker. Fastest and most robust is the linear approximated mode, but it assumes the network is close to the error E(w) minimum. Obviously this is not true at the begining of the training so exact mode of Hessian should be used in this case. Another possibility is to train the network with a fixed value of α up to the error minimum, and then switch on the regularization optimization with approximated Hessian calculations.
       Optimization leads to similar final values of α, regardless of the initial value α0 (Fig.2). The procedure is also sensitive to the uncertanties (noise level) of the training data. Lower regularization factor value is estimated if data is characterized by low uncertainty (it is safe to allow the network to fit the data closely) - see Fig.3.

    alpha initialization
    Fig. 2. Online optimization of the regularization factor with different initial α0 values (αi = α0 for the first 1000 iterations, as shown in zoomed image). Final α value doesn't depend on α0 choice.

     

    net output
    alpha optimization
    Fig. 3. Online optimization of the regularization factor with different training data uncertanties σt (noise). Upper image: two training data sets with high and low noise levels and corresponding network outputs. Lower image: α(iteration) plots.

    Having well established procedure for training and regularizing the network, one can try to optimize the network size. Tab.1 shows the results of training differently sized networks. BF allows to compare models by evidence - the maximum value corresponds to the network that fits data well and at the same time is simple enough to keep good generalization. In this example the model with 3 hidden neurons is prefered by BF (and by χ2 normalized to the number of data points N minus number of the network weights M). Model 1-2-1 is too small to represent significant data features (see Fig.4). Structures larger than optimal 1-3-1 start to have some redundancy which leads to decreased evidence values. It is worth to note that these models potentialy can overfit data but with BF-optimized regularization factor it is possible to get smooth network outputs with uncertainties not much higher than obtained for the optimal solution (Fig.4).

    net size 1-2-11-3-11-4-11-5-11-6-11-7-1
    log(evidence) -73.7-61.0-63.2-64.4-68.5-69.0
    χ2 / (N - M) 1.330.6440.7340.8390.9571.10
    α factor 0.04690.02250.02830.03110.03350.0336
    Tab. 1. Parameters of networks with different number of hidden neurons, trained with online α optimization.

     

    net output
    net sigma
    Fig. 4. Output and its uncertainty σnet of the networks with different sizes of the hidden layer - online optimized regularization factor α.

    For comparison, the same sequence of networks was trained with a fixed value of regularization factor: α = 0.001. All these networks have lower χ2 / (N - M) values (Tab.2) than corresponding models in previous training (Tab.1). However, as you can see in Fig.5, output of new networks seem to fluctuate more, and also estimated uncertainties are higher. This is due to the lack of regularization of the models with redundant parameters. Correct comparison with previously trained networks should be done with BF, which assignes significantly lower evidence values to the models with no constraints on weights.

    net size 1-2-11-3-11-4-11-5-11-6-11-7-1
    log(evidence) -81.9-70.4-76.6-85.4-92.7-98.0
    χ2 / (N - M) 1.230.5000.5040.5700.5920.651
    α factor 0.0010.0010.0010.0010.0010.001
    Tab. 2. Parameters of networks with different number of hidden neurons, trained with fixed, small value of α.

     

    net output
    net sigma
    Fig. 5. Output and uncertainty of the networks with different sizes of the hidden layer - fixed value of the regularization factor α = 0.001.

    Network output uncertainty presented for the above examples was calculated according to the formula derived from BF for E = χ2 + 1/2⋅α⋅Σwi2 error function:

    σnet2(input) = yTH-1y,    H = [∂2E(wi,wj)/∂wiwj],    y = [∂net(input, wi) / ∂wi],

    but also any other error function available in NetMaker should give a proper uncertainty estimation. For Hessian inverse calculation stability it is important to use the regularization during the training. Evaluated uncertainty σnet2(input) is sensitive to the flexibility of the used network model (dependent on the network size & regularization) and also to the distribution of the training data (with its uncertainties in case of χ2 error function). As it is shown in the following figures, σnet2(input) is growing in regions either with no data or data with higher noise (gray curve - data generating model, blue points - training data with noise, red curve - network output with shaded 1σ uncertainty).

    low noise, fit
    Fig. 6. Training data with low noise.
     
    high noise, fit
    Fig. 7. Training data with high noise.
     
    variable noise, fit
    Fig. 8. Training data with varying noise.
     
    missing data, fit
    Fig. 9. Training data with missing points.

     

    Parameterizations of Electromagnetic Nucleon Form Factors

    The real-life (if one can call this kind of problems a real life...) application of BF to fit form factor functions G(Q2) was our starting point to make the implementation in NetMaker. This is the ideal task for neural network and statistical optimizations: the experimental data for G(Q2) dependences do exist, but there is no well proven theoretical form of these functions. So we want to perform a model-independent analysis (and the neural network is capable of approximating any continuous function) with good reliability that we do not exceed the accuracy of the physics experiments (and this is where BF is used).

    Numerical results - raw tables with prepared fits, and project files to make the fit on your own.