Abstract

Target threat assessment is a key issue in the collaborative attack. To improve the accuracy and usefulness of target threat assessment in the aerial combat, we propose a variant of wavelet neural networks, MWFWNN network, to solve threat assessment. How to select the appropriate wavelet function is difficult when constructing wavelet neural network. This paper proposes a wavelet mother function selection algorithm with minimum mean squared error and then constructs MWFWNN network using the above algorithm. Firstly, it needs to establish wavelet function library; secondly, wavelet neural network is constructed with each wavelet mother function in the library and wavelet function parameters and the network weights are updated according to the relevant modifying formula. The constructed wavelet neural network is detected with training set, and then optimal wavelet function with minimum mean squared error is chosen to build MWFWNN network. Experimental results show that the mean squared error is , which is better than WNN, BP, and PSO_SVM. Target threat assessment model based on the MWFWNN has a good predictive ability, so it can quickly and accurately complete target threat assessment.

1. Introduction

With the development of science and technology, the requirement of information is increasingly improving in modern warfare. To adapt to this change, many countries have begun the research of multisensor information fusion from the 1970s. After years of research, the United States, Britain, and other military powers have developed a number of information fusion systems which can be used for combat. Target threat assessment belongs to the third level in information fusion model and is a kind of high-level information fusion. The target threat assessment is the essential basis for the allocation of force and fire in C4ISR system.

The traditional methods to solve threat assessment are Bayesian inference [1, 2], multiattribute decision-making theory [3], GSOBP [4], Elman_AdaBoost [5], analytic hierarchy process [6], Dempster-Shafer theory [7], Hypothesis-drive [8], and so forth. These methods are based on constant weight vector and must rely on expertise available, which makes these methods significantly increase subjective factor of threat assessment, and it is highly possible to evaluate inaccurate results, making the complex relationship between evaluation indicators not effectively reflected. In addition, the models created by these methods have a fatal drawback; that is, these models do not have the self-learning and adaptive capacity, so it is difficult to adapt to change as the change of the enemy air attack weapons performance and tactical means brought to the weights of each factor changes. As the neural network has many advantages, such as strong learning ability and adaptability, it is adept at working out the target threat assessment compared with the above-mentioned methods. BP is a mature and effective method, with the advantages of rigorous derivation process, solid theoretical basis, strong versatility, and clear physical concepts. Literature [7, 8] studies threat assessment using BP networks, and achieve good results. However, with the dimension of training data increasing, the convergence of BP slows down, and the network performance deteriorates; moreover, in the training process, it is easy to fall into local minimum solution. Wavelet neural network (WNN) has many advantages compared with other neural networks; for example, the parameters (hidden nodes and weight) are more easily determined than the radial basis function (RBF) neural networks; it requires smaller training amount than multilayer perceptron network; also, wavelet neural network has a fast convergence. In the same approximation quality, the wavelet neural network requires fewer nodes. For WNN, one of the biggest drawbacks is the difficulty of the choice of mother wavelet function, so this paper proposes an algorithm for selecting optimal mother wavelet function. And then, we construct the (Multiple Wavelet Function Wavelet Neural Networks) MWFWNN using the above method to select optimal mother wavelet function for threat assessment.

2. MWFWNN Network

2.1. Wavelet Theory

Firstly proposed by Grossman and Morlet in the 1980s, wavelet theory [9] is a mathematical theory and analysis method to make up the shortages of Fourier transform. In the field of signal processing, the most widely used analysis method is the Fourier transform, but it has obvious deficiency that the Fourier transform has no distinguishable ability in the time domain, because the time information is not included in the results of Fourier transform. Wavelet is special waveform with the mean 0 and the limited length.

Wavelet function is constructed through a series of basic transformation with a mother wavelet function. Not all functions can be used as wavelet mother function if a wavelet function is to be available and then develop into a good wavelet transform function, it must satisfy many conditions. Therefore, it is difficult to find the practical wavelet function. In the practical wavelet functions, some of them do not have expressions.

Let be a square integrable function, that is, . If its Fourier transform can satisfy the following compatibility condition: then is called a basic wavelet or mother wavelet function. We make translation and scale for wavelet function, the translation factor , and the scale factor (also known as the expansion factor) , so that we get function :

As the translation factor and the scale factor are continuous variables, their value can be positive or negative; so is called continuous wavelet function (also called the mother wavelet function).

Wavelet transform calculates the inner product between the signal with mother wavelet function

Equivalent expression in time domain is given as where and are the Fourier transform of and , respectively.

The conclusion can be drawn from (3) and (4) that is wavelet analysis can analyze the local characteristics of the signal through the mother wavelet function transformation; therefore, wavelet theory is considered to be the breakthrough for the Fourier transform, and the theory has been successfully applied to image processing, optical devices detection, and signal analysis and other fields.

2.2. Wavelet Neural Network

Wavelet transform has time-frequency localization property and focal features and neural network (NN) has self-adaptive, fault tolerance, robustness, and strong inference ability. How to combine the advantages of wavelet transform and NN to solve practical problems has been one of the hot spots. So-called wavelet neural network (WNN) or wavelet network (WN) is a variety of two techniques and inherits the advantages of the neural network and wavelet transformation. Proposed by Q. Zhang in 1992 [10], WNN uses the wavelet function as the activation function instead of the Sigmoid activation function.

For WNN, its topology is based on BP network; the transfer function of hidden layer nodes is the mother wavelet function; and the network signal is prior to transmission while error is backpropagation in the training process. The network topology is shown in Figure 1. In Figure 1, is the input vector; is the predicted output; and are the weights connecting every layer; and is mother wavelet function.

For the input signal sequence , the output of the hidden layer is calculated as where is output value for the node in the hidden layer; is the mother wavelet function; is weight connecting the input layer and hidden layer; is the shift factor, and is the stretch factor for .

Currently, the choice of mother wavelet functions has not yet formed a standard theory; commonly used wavelet functions are Morlet, Haar, Daubechies (dbN), Symlet (symN), Meryer, Coiflet, Biorthogonal wavelets, and so on.

The output of the output layer is calculated as where is the output value for node in the hidden layer; is weight connecting the hidden layer and output layer; and are the number of nodes for output layer and the hidden layer, respectively.

For WNN, the updating weight algorithm is similar to BP network; the gradient method is used to update mother wavelet function parameters and connection weights between the layers, making the prediction output closer and closer to the desired output. The weights of WNN and the parameters of wavelet function are updated as follows.

(1) Calculating the prediction error of WNN where, is the predicted output value, is the expected output value for the network.

(2) Updating the weights of WNN and the parameters of wavelet function according to the prediction error where , and are calculated by the network prediction error: where is the learning rate.

The process of training WNN is as follows(1)Data preprocessing: first, the original data is quantified and normalized, and then the data is divided into training set and testing set for network training and testing, respectively. (2)Initializing WNN: connection weights and , translation factor , and scale factor are randomly initialized, and the learning rate is set.(3)Training network: input the training set into WNN, compute network predicted output values, and calculate the error between output and the expected value.(4)Updating the weights: update mother wavelet function parameters and network weights according to the prediction error , making the predictive value of the network as close to actual values.(5)If the results satisfy the given conditions, use the testing set to test the network, otherwise, return to Step 3.

2.3. MWFWNN

MWFWNN will be provided in this section.

2.3.1. MWFWNN Algorithm

Step 1. Initializing: initialize mother wavelet function library , ,  is the number of elements waveFunction included, the variance for mother wavelet functions , and optimal wavelet function and its variance .

Step 2. Choosing the best mother wavelet function: for each mother wavelet function,(i)Update the weights and parameters of wavelet function according to (7)–(9). (ii)if End

Step 3. Constructing MWFWNN using as mother wavelet function.

Step 4. Testing constructed MWFWNN network in Step 3 using the testing set.

Step 5. Analyzing results.

3. Target Threat Assessment Using MWFWNN

Strictly speaking, threat assessment is an NP-hard problem, belonging to the third level in the JDL information fusion model. Target threat assessment needs to consider many factors (such as geography, weather, enemy, etc.), and the relation among the various factors is not a simple linear combination and it is difficult to determine a function between the target threat value and various factors. Therefore, we must consider various factors and their relationships when studying the threat assessment. However, we consider the following six factors in general: target type, target speed, target heading angle, target height, and target distance. We will test the performance of MWFWNN using these factors in this paper.

3.1. Target Threat Assessment Factor

We mainly consider the following six key factors when studying the target threat assessment in the paper:(1)Target Type: large targets (such as fighter-bombers), small targets (such as stealth aircraft, cruise missiles), and helicopters;(2)Target heading angle: such as 22°, 26°, and 6°;(3)Target speed: such as 100 m/s, 500 m/s, and 220 m/s;(4)Target height: such as very low, low, medium, and high;(5)Target interference: such as strong, medium, and weak;(6)Target distance: such as 100 km, 110 km, and 220 km.

3.2. Threat Assessment Model Using MWFWNN

We design MWFWNN model according to the data characteristics. Because the data is 6-dimensional, and the output is 1-dimensional, the structure of WNN is 6-12-1. Firstly, we input six indicators that are the target type, target speed, target heading angle, target interference, target height, and the distance to the input layer. The hidden layer nodes are formed by the wavelet function, and the output layer outputs predicted target threat assessment value under the current indicators. On the basis of the above analysis, we construct the target threat assessment model based on MWFWNN with these six selected indicators, and its architecture is shown in Figure 2.

4. Model Simulation

In this section, we will test the target threat assessment model using MWFWNN proposed in Section 3.

4.1. Data Preprocessing

Part of the data used in our work is shown in Table 1. Target value is quantified using  G. A. Miller’s quantitative theory, which represents the degree of threat: extremely small, very small, little small, small, medium, large, little large, very large, and extremely large. The properties of the specific quantitative criteria are quantified as follows.(1)Target Type: helicopter, large target (such as fighter-bombers), and small targets (such as stealth aircraft, cruise missiles), are quantified by 3, 5, and 8, respectively; (2)Target interference: strong, medium, weak, and no are quantified by 8, 6, 4, and 2, respectively;(3)Target height: very low, low, medium, and high are quantified 8, 6, 4, and 2, respectively; (4)Target speed: 0 m/s~1800 m/s equal interval (200 m/s) is quantified by 9 to 1.(5)Target heading angle: equal interval (4°) is quantified by 9 to 1.(6)Target distance: 0 km~450 km equal interval (50 km) is quantified by 9 to 1.(7)Determining the target output: firstly normalize the various factors from air combat situation and then put them into the WMF_WNN proposed in Section 3.2. At last, the WMF WNN outputs threatening assessment value.

After quantifying the data, we can normalize the training set and testing set using the following expression: where . The values are converted into the range through the normalization, that is, .

4.2. Analysis of Simulation Results

In this paper, we implement the MWFWNN algorithm by MATLAB R2009a with the CPU Pentium (R) 4 3.06 GHz, 1 G memory ( M). The network prediction is compared with WNN, PSO_SVM and BP neural network. The results show that the proposed network is superior to the WNN, PSO_SVM and BP neural network.

4.2.1. Creating the Mother Wavelet Function Library

Because many mother wavelet functions have no specific expression, we cannot work out their derivatives. Therefore, in this work, we only use the following seven mother wavelet functions to bulid a library waveFunciton. Their expressions are as follows:(1)Haar wavelet function: (2)Gaussian wavelet function: (3)Morlet wavelet function: (4)Mexican Hat (Mexihat) wavelet function: (5)Shannon wavelet function: (6)Meyer wavelet function (approximate formula): (7)Wavelet function GGW constructed by the authors:

We use the following parameters to initialize the network: the input layer nodes , the hidden layer nodes , the output nodes , and parameter learning rates and , respectively.

We construct wavelet neural network using each wavelet function in wavelet function library and then input training set into network and train the network. The MSEs are as follows (from small to large): Morlet < Mexihat < GGW < Haar < Gaussian < Shannon < Meyer, as shown in Table 2. From Table 2, we can draw the conclusion that running time and MSE of Morlet and Mexihat are slightly different, but the MSE of Gaussian, Shannon, and Meyer is extremely great, completely divorced from reality. The results we got in this paper are consistent with the fact that most papers adopt Mexihat or Morlet as mother wavelet functions to construct wavelet neural network. So, we can use wavelet functions Morlet or Mexihat as mother wavelet function to create MWFWNN network. In this paper, we use the Morlet wavelet function as the basic mother wavelet function to construct MWFWNN.

4.2.2. Comparing with WNN and PSO_SVM, BP

Similar to MWFWNN, WNN, BP network, and support vector machine (SVM) can be used to solve the target assessment. As the choice of the support vector machine parameters and has no uniform standard except relying on experience; in this paper, we use particle swarm optimization (PSO) algorithm to optimize the SVM parameters and . Next, we use wavelet neural network, BP neural network, and PSO_SVM to solve threat assessment, and the results are compared with MWFWNN.

The structure of wavelet neural network and BP neural network is 6-12-1 according to the characteristics of the data used. Where the WNN and other parameters are setting as shown in Section 4.2.1. PSO SVM uses LIBSVM toolbox [11] whose default is C-SVR and RBF kernel function, where , . By default, PSO local search , the global search , the maximum evolution times , the maximum population size , the rate between and , SVM parameter , and the parameter .

Threat assessment is predicted by the trained WNN, BP network, and PSO_SVM and their MSE are , and , all of which are greater than MWFWNN (as shown in Table 3). For the running time, due to BP neural network calling MATLAB embedded functions, running time is least; wavelet neural networks need to call each mother wavelet function and its derivative, so it is time to consume more; MWFWNN network needs to find the optimal wavelet function from the library, so the running time is more than WNN; the PSO_SVM call PSO algorithm to optimize parameter and , but PSO optimization algorithm is more complex, so it implements most slowly.

Prediction error of BP, PSO_SVM, WNN, and MWFWNN is shown in Figure 3. The figure shows that, prediction errors of WNN, BP, and PSO_SVM are simlilar. The error is less than the true value at sample 1–10, while the error was significantly greater than the true value at sample 11–15. MWFWNN network error has similar trend, but the error was significantly less than the WNN, BP network and PSO_SVM, prediction value closer to the expectations.

5. Conclusion

Based on requirements for quickly processing information in the modern information war, aiming to the characteristics of threat assessment in data fusion functional model, we adopt MWFWNN to solve the threat assessment under the comprehensive consideration of various factors which influence the threat degree. After constructing wavelet function library with 7 wavelet functions, we get the best performance wavelet function Morlet as mother wavelet function to construct MWFWNN network and its result is compared with the WNN, BP, and PSO_SVM networks. Simulation results show that, the MSE of MWFWNN is 1.23 × 10−3, which is far better than WNN (4.01 × 10−3), BP network (9.39 × 10−3), and PSO_SVM (4.80 × 10−3), achieving the desired goal. In our future work, we will further expand the scale of wavelet function library to find more suitable wavelet function to solve the threat assessment and other problems.