999精品在线视频,手机成人午夜在线视频,久久不卡国产精品无码,中日无码在线观看,成人av手机在线观看,日韩精品亚洲一区中文字幕,亚洲av无码人妻,四虎国产在线观看 ?

Research on predictive control model of RBF neural network based on group intelligence optimization

2020-07-24 06:33:26LeiXIAOLiluGUOXiaojieWANGJieQIU
機床與液壓 2020年12期

Lei XIAO, Li-lu GUO, Xiao-jie WANG, Jie QIU

(1College of Computer Science and Technology, Yulin Normal University, Yulin 537000, China)(2College of Computer Science and Technology, Xidian University, Xi’an 710000, China )(3School of Information Science and Engineering, Xinjiang University, Urumqi 830011, China)

Abstract: In order to improve the accuracy of the predictive control model, the RBF neural network is used to complete the network traffic prediction, and the model parameters are optimized by using the hybrid leapfrog algorithm in the swarm intelligence algorithm. First, the hybrid leapfrog algorithm is introduced in the modeling process. Then, the weights and thresholds of the RBF neural network are used as individual frogs, and multiple randomly combined individuals with weights and thresholds constitute a frog group. Group the frog groups, and obtain global optimal individuals through continuous regrouping and iteration within the group to obtain the optimal weights and thresholds in order to determine the optimal predictive control model. Experiments prove that the predictive control model based on RBF neural network optimized by swarm intelligence has higher accuracy.

Key words: RBF neural network, Swarm intelligence, Hybrid leapfrog algorithm, Network traffic forecast, Fitness function

With the development of the mobile Internet, the types of equipment connected to the Internet have become more diversified, and the types of data accessed have become significantly different, and users have higher requirements for data upload and download rates. This all places higher requirements on the development of the Internet, especially support for network traffic, which is particularly important for the user experience. The Internet must provide a guarantee that a large number of users can smoothly upload and download data, and at the same time ensure the full use of network equipment resources. Therefore, it is very important to make a good network prediction and make a reasonable network flow control strategy based on the actual network traffic.

In the case of limited network resources, using historical data to predict current and future network traffic based on network traffic in order to continuously balance and allocate network resources can effectively improve the utilization of network equipment and resources. However, in the face of the increasing amount of data and the heterogeneity of user equipment, how to meet the different traffic refinement requirements of different types of equipment needs further research. Ref. [1] provided a more comprehensive discussion on the direction of wireless network traffic prediction, explained the characteristics of wireless network user increment and its demand for traffic, and provided a basis for further targeting the direction and focus of wireless network traffic. Ref. [2] adopts a support vector machine method combining artificial bee colony and artificial fish swarm to complete the traffic prediction, which integrates multiple swarm intelligence algorithms. Ref. [3] uses a swarm intelligence algorithm to implement wireless sensor network traffic prediction, which expands the range of traffic prediction to wireless sensor networks. Therefore, this paper combines swarm intelligence algorithm with RBF neural network to realize network traffic prediction and improve its adaptability to traffic prediction.

1 RBF neural network

Let the input sample beXk=(x1,x2,…,xn),k=1,2,…,m, where m and n respectively represent the total number of samples and the total number of features in one sample. Generally speaking, the number of neurons in the input layer is equal to the total number of features. The number of layer neurons is generally less than the total number of features. The output of the K-th sample after the model isYk=(y1,y2,…,yn), and n is the number of neurons in the output layer.

First, the value of the input sample after reaching the first layer of the hidden layer after weighting isS1j[4].

(1)

After the value ofS1jis passed through the feature conversion function,b1jcan be obtained.

(2)

The feature conversion function selected by RBF neural network is Gaussian function[5]. Whereσis a real number greater than 0, andcjis the center value of the j-th hidden layer. Taking the first hidden layer as input, the value that reaches the second hidden layer after weighting isS2j.

(3)

Then solve the transformation function to getb2j.

(4)

The output through all hidden layers is weighted byVjtand the result isLt.

(5)

The above formula is solved by the Gaussian function to obtain the output of the entire model:

(6)

The error result of the k-th sample isEk.

(7)

The error of all samples isE.

(8)

Formula (8) is derived from formula (9) by first-order derivation.

ΔVjt=-?Ek/?Vjt

(9)

Solve the weights from the hidden layer to the output layer. Continue to solve the weights ΔWjtof the input and hidden layers.

(10)

2 Swarm intelligence optimized RBF neural network

The swarm intelligence algorithm has a wide content and contains more algorithms[6]. This paper selects a hybrid frog-leaping algorithm in the swarm intelligence algorithm to optimize the parameters of the RBF neural network and improve the accuracy of the network traffic prediction of the RBF neural network.

2.1 Hybrid frog leaping algorithm

(11)

(12)

2.2 Hybrid frog jump optimized RBF neural network

The hybrid frog leaping algorithm of Section 2.1 is used to realize the weight and threshold determination of RBF neural network. The main process is that: during the (t+1)-th calculation iteration, using the results after the t-th iteration, the frogXb(t) with a larger RMSE is continuously approached to the frogXw(t) with a smaller RMSE. In order to ensure that the frogs in the group can move closer to the frog with a smaller RMSE, a hungry moving method is proposed as shown in formula (13)[9].

Δw(t)=rand()(Xb(t)-x(t))

(13)

Xw(t+1)=Xw(t)Δw(t)

Rmin≤Δw(t)≤Rmax

(14)

If the value ofXw(t+1) at time (t+1) is larger thanXw(t), that is, it has better fitness, then replaceXw(t) withXw(t+1). Otherwise, continue to execute formulas (13) and (14). With regard to the frog moving step size, a step size factorCcan be introduced[10]. Then the calculation of thei-th moving distance of thek-th frog is shown in formula (15).

(15)

C=Cmin+inow/Gglobal×(Cmax-Cmin)

(16)

WhereCminandCmaxare the minimum and maximum moving step sizes of the frogs in the current group, which can be set according to the actual situation.Gglobalis the sum of fitness values of all frogs in the group, andinowis the number of times the frog moves at the current moment.

When the fitness value of all frogs in the group is closer toXb(t), and the error is within the set threshold, then the algorithm stops iteratively and outputs the frog distribution map at the current moment, which is the optimal solution.

2.3 Network flow forecasting process based on hybrid frog leap optimization RBF neural network

The process of frog leap hybrid optimization to obtain the optimal individual is actually the process of solving the RBF neural network weight and threshold optimal solution. With the optimal solution of weights and thresholds, the network traffic prediction model of RBF neural network can be determined. In the process of the hybrid frog jumping algorithm, it is necessary to continuously group the entire frog group, and continuously update the position of the individual with a larger RMSE in the group to improve the fitness value of all individuals in the group. The parameter adjustment method of this neural network model is highly efficient, and each iteration increases the fitness value.

The network flow prediction process of the RBF neural network optimized by the hybrid frog leap is shown in Fig.1.

Fig.1 Flow chart of network traffic prediction of leapfrog hybrid optimization RBF neural network

3 Experimental design and results analysis

In order to verify the performance of hybrid frog leap-optimized RBF neural network for network traffic prediction, a case simulation was performed. The simulation data comes from a large power grid platform[11-13], and the data flow for one month is selected as the simulation object.

3.1 Simulation of prediction accuracy

The RBF neural network and the RBF neural network through the hybrid frog jumping algorithm were used to simulate the network traffic for one month on a weekly basis[14]. The root mean square error (RMSE) was selected as the accurate criterion for network prediction[15]. In the simulation process, in order to fully verify the impact of the hybrid frog jump optimization on the prediction accuracy rate, the RBF neural network structure is differentiated. The simulation results are shown in Table 1.

Table 1 prediction accuracy of the two algorithms

It can be seen from Table 1 that under the same neural network scale, the RBF neural network traffic prediction based on the hybrid frog leap optimization has a lower RMSE, which indicates that the prediction accuracy is higher. Especially when the number of hidden layers is 10, the predictions for 4 weeks all show lower RMSE, and more ideal prediction results can be obtained. Therefore, in actual operation, the appropriate neural network scale can be selected according to Table 1 to complete the network traffic prediction.

In addition, in order to further verify the advancedness of the proposed method, a comparison experiment is performed with a network prediction method using a wavelet neural network. The test data set is one month of network traffic. The comparison result is shown in Fig.2. Among them, the number of hidden layers of the RBF neural network optimized by the hybrid leapfrog is ten. As can be seen from Fig.2, compared to the wavelet neural network, the hybrid frog leap-optimized RBF neural network shows a lower RMSE.

Fig.2 Comparison results of RMSE

3.2 Optimization of leapfrog mixed parameters

In order to further analyze the optimal performance of RBF neural network optimized by frog leap hybrid, the main parameters of the hybrid frog leap algorithm were differentiated and simulated. The main purpose is to simulate the number of frog groups, the step size of frog movement, and the number of iterations within the group after grouping frog groups to verify the impact of different parameters on the accuracy of prediction. The number of hidden layer neurons in the RBF neural network is set to 10. Select the number of packets 10, 20, 30, 40, and 50, with steps of 1, 3, and 5, to predict the network traffic for one month. After 10 predictions, the predicted maximum, average, and minimum RMSE values are solved, as shown in Table 2.

Table 2 RMSE of different groups and steps

As can be seen from Table 2, when the number of packets belongs to [10, 20, 30, 40, 50] and the step size is [1, 3, 5], RMSE does not exceed 0.7. Moreover, the maximum and minimum deviations from the mean are not large, and the algorithm is relatively stable. By comparison, when the number of groups is 30 and the step size is 3, the average value of RMSE is the smallest, only 0.049 9. In actual application, the parameters of the hybrid frog jumping algorithm can be fine-tuned by repeatedly changing the main parameter simulation method to achieve better prediction results.

Table 3 RMSE of iterations in different groups

The number of groups and step size were fixed to 30 and 3, and the number of different iterations was adjusted to verify its impact on prediction accuracy.

It can be concluded from Table 3 that as the number of iterations in the group increases, the maximum, minimum, and average values of RMSE decrease slowly. However, when the number of iterations is 40 and 50, the minimum and average RMSE of the two do not change. In addition, the maximum value is almost unchanged and stable, and it does not always decrease as the number of iterations increases. Therefore, the setting of the number of iterations should be reasonable, and if the number of iterations is increased blindly, the prediction time will definitely increase. The reasonable number of iterations in the group should be set according to the actual situation.

4 Conclusion

The hybrid frog leap is used to optimize the network traffic prediction of the RBF neural network, which improves the network traffic prediction accuracy. The following conclusions are obtained through experimental simulations: 1) The specific operation process of traffic prediction should reasonably set the size of the neural network; 2) By fine-tuning the main parameters of the hybrid frog jumping algorithm, better network traffic prediction results can be obtained.

主站蜘蛛池模板: 国产一区二区网站| 色九九视频| 亚洲高清在线天堂精品| 久久久精品久久久久三级| 欧美精品H在线播放| 亚洲欧美日韩高清综合678| 日韩精品成人在线| 中文字幕无码av专区久久| 成人在线综合| 婷婷六月天激情| 精品视频一区在线观看| 中美日韩在线网免费毛片视频 | 成人福利免费在线观看| 国产精品性| 国产精品成人不卡在线观看| 色噜噜狠狠色综合网图区| AV不卡在线永久免费观看| 亚洲欧美精品一中文字幕| 沈阳少妇高潮在线| 国产精品永久不卡免费视频| 91精品啪在线观看国产91| 国产丰满成熟女性性满足视频| 亚洲国产成人无码AV在线影院L| 国产在线一区二区视频| 精品福利视频网| www.av男人.com| 日本午夜视频在线观看| 伊人成人在线| 免费看一级毛片波多结衣| 无码区日韩专区免费系列| 亚洲经典在线中文字幕| 国产精品久久久久鬼色| 国产真实二区一区在线亚洲| 久久黄色免费电影| 国产99视频在线| 精品国产自在在线在线观看| 中美日韩在线网免费毛片视频| 午夜视频www| 91精品国产自产在线老师啪l| 91福利国产成人精品导航| 激情无码字幕综合| 国产剧情一区二区| 成年人国产网站| 久久久久中文字幕精品视频| 熟妇丰满人妻| 亚洲AV成人一区国产精品| 久久永久免费人妻精品| 欧美无专区| 亚洲黄网在线| 毛片手机在线看| 精品日韩亚洲欧美高清a| 99在线免费播放| 国产在线无码av完整版在线观看| 欧美高清视频一区二区三区| 中文字幕在线观| 欧美日韩久久综合| 91视频99| 午夜电影在线观看国产1区| 国产国模一区二区三区四区| 国产一级裸网站| 热99精品视频| 国产精品手机视频| 91福利免费| 国产高潮流白浆视频| 欧美一区二区精品久久久| 亚洲一区无码在线| 日本福利视频网站| 亚洲福利视频一区二区| 她的性爱视频| 亚洲毛片网站| 免费高清毛片| 色欲色欲久久综合网| 99视频全部免费| 亚洲欧美综合精品久久成人网| 久久性视频| 2020最新国产精品视频| 亚洲天堂视频在线播放| 亚洲区第一页| 欧美在线视频不卡第一页| 精品人妻一区无码视频| 欧美中出一区二区| 国产三区二区|