Literature DB >> 24883357

Human behavior-based particle swarm optimization.

Hao Liu1, Gang Xu2, Gui-Yan Ding3, Yu-Bo Sun3.   

Abstract

Particle swarm optimization (PSO) has attracted many researchers interested in dealing with various optimization problems, owing to its easy implementation, few tuned parameters, and acceptable performance. However, the algorithm is easy to trap in the local optima because of rapid losing of the population diversity. Therefore, improving the performance of PSO and decreasing the dependence on parameters are two important research hot points. In this paper, we present a human behavior-based PSO, which is called HPSO. There are two remarkable differences between PSO and HPSO. First, the global worst particle was introduced into the velocity equation of PSO, which is endowed with random weight which obeys the standard normal distribution; this strategy is conducive to trade off exploration and exploitation ability of PSO. Second, we eliminate the two acceleration coefficients c 1 and c 2 in the standard PSO (SPSO) to reduce the parameters sensitivity of solved problems. Experimental results on 28 benchmark functions, which consist of unimodal, multimodal, rotated, and shifted high-dimensional functions, demonstrate the high performance of the proposed algorithm in terms of convergence accuracy and speed with lower computation cost.

Entities:  

Mesh:

Year:  2014        PMID: 24883357      PMCID: PMC4030565          DOI: 10.1155/2014/194706

Source DB:  PubMed          Journal:  ScientificWorldJournal        ISSN: 1537-744X


1. Introduction

Particle swarm optimization (PSO) [1] is a population-based intelligent algorithm, and it has been widely employed to solve various kinds of numerical and combinational optimization problems because of its simplicity, fast convergence, and high performance. Researchers have proposed various modified versions of PSO to improve its performance; however, there still are premature or lower convergence rate problems. In the PSO research, how to increase population diversity to enhance the precision of solutions and how to speed up convergence rate with least computation cost are two vital issues. Generally speaking, there are four strategies to fulfill these targets as follows. (1) Tuning control parameters. As for inertial weight, linearly decreasing inertial weight [2], fuzzy adaptive inertial weight [3], rand inertial weight [4], and adaptive inertial weight based on velocity information [5], they can enhance the performance of PSO. Concerning acceleration coefficients, the time-varying acceleration coefficients [6] are widely used. Clerc and Kennedy analyzed the convergence behavior by introducing constriction factor [7], which is proved to be equivalent to the inertial weight [8]. (2) Hybrid PSO, which hybridizes other heuristic operators to increase population diversity. The genetic operators have been hybridized with PSO, such as selection operator [9], crossover operator [10], and mutation operator [11]. Similarly, differential evolution algorithm [12], ant colony optimization [13], and local search strategy [14] have been introduced into PSO. (3) Changing the topological structure. The global and local versions of PSO are the main type of swarm topologies. The global version converges fast with the disadvantage of trapping in local optima, while the local version can obtain a better solution with slower convergence [15]. The Von Neumann topology is helpful for solving multimodal problems and may perform better than other topologies including the global version [16]. (4) Eliminating the velocity formula. Kennedy proposed the bare-bones PSO (BPSO) [17] and variants of BPSO [18, 19]. Sun et al. proposed quantum-behaved PSO (QPSO) and relative convergence analysis [20, 21]. In recent years, some modified PSO have extremely enhanced the performance of PSO. For example, Zhan et al. proposed adaptive PSO (APSO) [22] and Wang et al. proposed so-called diversity enhanced particle swarm optimization with neighborhood search (DNSPSO) [23]. The former introduces an evolutionary state estimation (ESE) technique to adaptively adjust the inertia weight and acceleration coefficients. The later ones, a diversity enhancing mechanism and neighborhood-based search strategies, were employed to carry out a tradeoff between exploration and exploitation. Though all kinds of variants of PSO have enhanced performance of PSO, there are still some problems such as hardly implement, new parameters to just, or high computation cost. So it is necessary to investigate how to trade off the exploration and exploitation ability of PSO and reduce the parameters sensitivity of the solved problems and improve the convergence accuracy and speed with the least computation cost and easy implementation. In order to carry out the targets, in this paper, the global worst position (solution) was introduced into the velocity equation of the standard PSO (SPSO), which is called impelled/penalized learning according to the corresponding weight coefficient. Meanwhile, we eliminate the two acceleration coefficients c 1 and c 2 from the SPSO to reduce the parameters sensitivity of the solved problems. The so-called HPSO has been employed to some nonlinear benchmark functions, which compose unimodal, multimodal, rotated, and shifted high-dimensional functions, to confirm its high performance by comparing with other well-known modified PSO. The remainder of the paper is structured as follows. In Section 2, the standard particle swarm optimization (SPSO) is introduced. The proposed HPSO is given in Section 3. Experimental studies and discussion are provided in Section 4. Some conclusions are given in Section 5.

2. Standard PSO (SPSO)

The PSO is inspired by the behavior of bird flying or fish schooling; it is firstly introduced by Kennedy and Eberhart in 1995 [1] as a new heuristic algorithm. In the standard PSO (SPSO) [2], a swarm consists of a set of particles, and each particle represents a potential solution of an optimization problem. Considering the ith particle of the swarm with N particles in a D-dimensional space, its position and velocity at iteration t are denoted by X (t) = (x 1(t), x 2(t),…, x (t)) and V (t) = (v 1(t), v 2(t),…, v (t)). Then, the new velocity and position on the d-dimension of this particle at iteration t + 1 will be calculated by using the following: where i = 1,2,…, N, and N is the population size; d = 1,2,…, D, and D is the dimension of search space; r 1 and r 2 are two uniformly distributed random numbers in the interval [0,1]; acceleration coefficients c 1 and c 2 are nonnegative constants which control the influence of the cognitive and social components during the search process. Pbest(t) = (Pbest 1(t),…, Pbest (t)), called the personal best solution, represents the best solution found by the ith particle itself until iteration t; Gbest(t) = (Gbest1(t),…, Gbest(t)), called the global best solution, represents the global best solution found by all particles until iteration t. w is the inertial weight to balance the global and local search abilities of particles in the search space, which is given by where w max⁡ is the initial weight, w min⁡ is the final weight, t is the current iteration number, and T is the maximum iteration number. Then, update particle's position using the following: and check x min⁡ ≤ x (t + 1) ≤ x max⁡ , where x min⁡ and x max⁡ represent lower and upper bounds of the dth variable, respectively.

3. Human Behavior-Based PSO (HPSO)

In this section, a modified version of SPSO based on human behavior, which is called HPSO, is proposed to improve the performance of SPSO. In SPSO, all particles only learn from the best particles Pbest and Gbest. Obviously, it is an ideal social condition. However, considering the human behavior, there exist some people who have bad habits or behaviors around us, at the same time, as we all known that these bad habits or behaviors will bring some effects on people around them. If we take warning from these bad habits or behaviors, it is beneficial to us. Conversely, if we learn from these bad habits or behaviors, it is harmful to us. Therefore, we must give an objective and rational view on these bad habits or behavior. In HPSO, we introduce the global worst particle, who is of the worst fitness in the entire population at each iteration. It is denoted as Gworst and defined as follows: where f(·) represents the fitness value of the corresponding particle. To simulate human behavior and make full use of the Gworst, we introduce a learning coefficient r 3, which is a random number obeying the standard normal distribution; that is, r 3 ∈ N(0,1). If r 3 > 0, we consider it as an impelled learning coefficient, which is helpful to enhance the “flying” velocity of the particle; therefore, it can enhance the exploration ability of particle. Conversely, if r 3 < 0, we consider it as a penalized learning coefficient, which can decrease the “flying” velocity of the particle; therefore, it is beneficial to enhance the exploitation. If r 3 = 0, it represents that these bad habits or behaviors have not effect on the particle. Meanwhile, in order to reduce the parameters sensitivity of the solved problems, we take place of the two acceleration coefficients c 1 and c 2 with two random learning coefficients r 1 and r 2, respectively. Therefore, the velocity equation has been changed as follows: where r 1 and r 2 are two random numbers in range of [0,1] and r 1 + r 2 = 1. The random numbers r 1, r 2, and r 3 are the same for all d = 1,2,…, D but different for each particle, and they are generated anew in each iteration. If v (t + 1) overflows the boundary, we set boundary value to it. Consider where v min⁡ and v max⁡ are the minimum and maximum velocity of the d-dimensional search space, respectively. Similarly, if x (t + 1) flies out of the search space, we limit it to the corresponding bound value. In SPSO, the cognition and social learning terms move particle i towards good solutions based on Pbest and Gbest in the search space as shown in Figure 1. This strategy makes a particle fly fast to good solutions, so it is easy to trap in local optima. From Figure 2, we can clearly observe that both impelled learning term and penalized term provide a particle with the chance to change flying direction. Therefore, the impelled/penalized term plays a key role in increasing the population diversity, which is beneficial in helping particles to escape from the local optima and enhance the convergence speed. In HPSO, the impelled/penalized learning term performs a proper tradeoff between the exploration and exploitation.
Figure 1

Cognition and social terms in PSO.

Figure 2

Impelled/penalized term in HPSO.

To sum up, Figure 3 illustrates the flowchart of HPSO. Meanwhile, the pseudocodes of implementing the HPSO are listed as shown in Algorithm 1.
Figure 3

HPSO flowchart.

Algorithm 1

HPSO.

4. Experimental Studies and Discussion

To evaluate the performance of HPSO, 28 minimization benchmark functions are selected [22, 24, 25] as detailed in Section 4.1. HPSO is compared with SPSO in different search spaces and the results are given in Section 4.2. In addition, HPSO is compared with some well-known variants of PSO in Section 4.3.

4.1. Benchmark Functions

In the experimental study, we choose 28 minimization benchmark functions, which consist of unimodal, multimodal, rotated, shifted, and shifted rotated functions. Table 1 lists the main information; please refer to papers [22, 24, 25] to obtain further detailed information about these functions. Among these functions, F 1–F 6 are unimodal functions. F 7 is the Rosenbrock function, which is unimodal for D = 2 and D = 3 but may have multiple minima in high dimension cases. F 8–F 15 are unrotated multimodal functions and the number of their local minima increases exponentially with the problem dimension. F 16–F 23 are rotated functions. F 24–F 26 are shifted functions and F 27 and F 28 are shifted rotated multimodal functions and O = (o 1, o 2,…, o ) is a randomly generated shift vector located in the search space. To obtain a rotated function, an orthogonal matrix M [26] is considered and the rotated variable y = M × x is computed. Then, the vector y is used to evaluate the objective function value.
Table 1

Functions' names, dimensions, ranges, and global optimum values of benchmark functions used in the experiments.

Number Function name Dimension (D) [Range]D F opt
F 1 Sphere model 30/50/100[−100, 100]D 0
F 2 Schwefel's problem 2.22 30/50/100[−10, 10]D 0
F 3 Schwefel's problem 1.2 30/50/100[−100, 100]D 0
F 4 Schwefel's problem 2.21 30/50/100[−100, 100]D 0
F 5 Step function 30/50/100[−100, 100]D 0
F 6 Quartic function, that is, noise30/50/100[−1.28, 1.28]D 0
F 7 Rosenbrock's function30/50/100[−10, 10]D 0
F 8 Schwefel's function30/50/100[−500, 500]D 0
F 9 Generalized Rastrigin's function30/50/100[−5.12, 5.12]D 0
F 10 Noncontinuous Rastrigin's function30/50/100[−5.12, 5.12]D 0
F 11 Ackley's function30/50/100[−32, 32]D 0
F 12 Generalized Griewank's function30/50/100[−600, 600]D 0
F 13 Weierstrass's function30/50/100[−0.5, 0.5]D 0
F 14 Generalized penalized function30/50/100[−50, 50]D 0
F 15 Cosine mixture problem30/50/100[−1, 1]D −0.1 × D
F 16 Rotated elliptic function30/50/100[−1.28, 1.28]D 0
F 17 Rotated Schwefel's function30/50/100[−500, 500]D 0
F 18 Rotated Ackley's function30/50/100[−32, 32]D 0
F 19 Rotated Griewank's function30/50/100[−600, 600]D 0
F 20 Rotated Weierstrass's function30/50/100[−0.5, 0.5]D 0
F 21 Rotated Rastrigin's function30/50/100[−5.12, 5.12]D 0
F 22 Rotated Salomon's function30/50/100[−100, 100]D 0
F 23 Rotated Rosenbrock's function30/50/100[−100, 100]D 0
F 24 Shifted Rosenbrock's function30/50/100[−100, 100]D 390
F 25 Shifted Rastrigin's function30/50/100[−5, 5]D −330
F 26 Shifted Schwefel's problem 2.2130/50/100[−100, 100]D −450
F 27 Shifted rotated Ackley's function30/50/100[−32, 32]D −140
F 28 Shifted rotated Weierstrass's function30/50/100[−0.5, 0.5]D 90

4.2. Comparison of HPSO with SPSO

The performance on the convergence accuracy of HPSO is compared with that of SPSO. The test functions listed in Table 1 are evaluated. For a fair comparison, we set the same parameters value. Population size is set to 30 (N = 30), upper bounds of velocity V max⁡ = 0.5 × (X max⁡ − X min⁡), and the corresponding lower bounds V min⁡ = −V max⁡, where X min⁡ and X max⁡ are the lower and upper bounds of variables, respectively. Inertia weight w is linearly decreased from 0.9 to 0.4 in SPSO and HPSO. Acceleration coefficients c 1 and c 2 in SPSO are set to 2. The two algorithms are independently run 30 times on the benchmark functions. The results in terms of the best, worst, median, mean, and standard deviation (SD) of the solutions obtained in the 30 independent runs by each algorithm in different search spaces are as shown in Tables 2, 3, and 4. At the same time, the maximum iteration T is 1000 for D = 30, 2000 for D = 50, and 3000 for D = 100, respectively.
Table 2

Experimental results obtained by SPSO and HPSO on function from F 1 to F 10.

Fun DimBest Worst Meadian Mean SD Significant
   F 1 30SPSO 1.1992e − 041.0000e + 049.9690e − 04666.6686 2.5371e + 03
HPSO 0 0 0 0 0 +
50SPSO 9.4288e − 041.0000e + 040.0078 3.6667e + 033.6667e + 03
HPSO 0 0 0 0 0 +
100SPSO 1.0013e + 047.0017e + 044.0087e + 044.0698e + 042.0974e + 04
HPSO 0 10000 0 333.3333 1.8257e + 03 +

F 2 30SPSO 6.8555e − 0430.0018 10.0017 11.3364 10.0777
HPSO 0 0 0 0 0 +
50 SPSO 0.0329 70.0010 40.0006 37.3438 15.2918
HPSO 0 0 0 0 0 +
100SPSO 51.0214 181.4054 110.5934 114.3039 29.0723
HPSO 0 0 0 0 0 +

F 3 30 SPSO 6.4613e + 033.7311e + 042.2333e + 042.1337e + 046.7035e + 03
HPSO 0 5.1779e + 03   0 172.5975 945.3557 +
50 SPSO 4.0023e + 041.0191e + 056.5660e + 047.0328e + 041.7603e + 04
HPSO 0 6.9787e + 03 0 232.6222 1.2741e + 03 +
100SPSO 1.7694e + 053.0086e + 052.4789e + 052.4752e + 053.6623e + 04
HPSO 0 2.6987e + 04 0 3.8008e + 036.9150e + 03 +

F 4 30 SPSO 8.6091 21.2711 12.9945 13.3502 3.5341
HPSO 0 0 0 0 0 +
50 SPSO 24.2031 39.5127 31.0562 31.1715 4.2886
HPSO 0 0 0 0 0 +
100SPSO 54.1172 75.3686 64.7834 64.2358 4.2202
HPSO 0 0 0 0 0 +

F 5 30 SPSO 0 10001 0 1.0005e + 03  3.0512e + 03
HPSO 0 0 0 0 0 +
50 SPSO 0 20004 4.5000 5.0028e + 03  6.8230e + 03  
HPSO 0 0 0 0 0 +
100SPSO 127 90040 40068 4.3086e + 042.2747e + 04
HPSO 0 0 0 0 0 +

F 6 30 SPSO 0.0344 18.8556 0.0959 3.5587 5.1400
HPSO1.4522e − 04 0.0030 0.0012 0.0012 8.5738e − 04 +
50 SPSO 0.0780 72.6594 13.648919.660419.3860
HPSO7.4623e − 05 0.0017 5.3645e − 04  6.3534e − 04  4.7283e − 04   +
100SPSO 86.7855 381.9209 200.8146 211.9720 88.3159
HPSO3.5210e − 05   0.0019 2.9387e − 04  4.0826e − 04  3.5395e − 04   +

F 7 30 SPSO 14.3237 1.0083e + 04  140.5176 2.4686e + 03  4.2581e + 03  
HPSO28.6353 28.9456 28.8793 28.8461 0.0932 +
50 SPSO 97.0317 9.4285e + 05376.2306 3.4093e + 041.7169e + 05
HPSO 48.4886 48.8766 48.7600 48.7513 0.0875 +
100SPSO 706.1328 2.8333e + 069.4375e + 058.8851e + 058.9157e + 05
HPSO 98.4280 98.8373 98.7133 98.7129 0.0818 +

F 8 30 SPSO 2.0226e + 03  4.8935e + 03  3.5787e + 03  3.6128e + 03   733.1063
HPSO3.5886e + 038.0516e + 036.6047e + 036.3505e + 031.0893e + 03
50 SPSO 5.8499e + 03  9.7913e + 03  7.8862e + 03  7.7139e + 03  1.0101e + 03  
HPSO6.5496e + 031.4460e + 041.1191e + 041.0866e + 042.1757e + 03
100SPSO 1.8110e + 042.4259e + 04  2.0949e + 04  2.1084e + 04  1.7384e + 03  
HPSO1.2615e + 04  3.1402e + 04  2.4302e + 04  2.4077e + 04  4.9510e + 03  

F 9 30 SPSO 28.7299 160.3815 87.6754 92.5142 32.6994
HPSO 0 0 0 0 0 +
50 SPSO 175.2643 351.6480 260.4359 258.0518 48.4078
HPSO 0 0 0 0 0 +
100SPSO 555.8950 993.3887 750.1694 749.1658 749.1658
HPSO 0 0 0 0 0 +

F 10 30 SPSO 61.4129 221.0445 132.7694 134.5414 33.8073
HPSO 0 0 0 0 0 +
50 SPSO 157.1020 440.0897 324.2632 310.3595 64.3675
HPSO 0 0 0 0 0 +
100SPSO 623.5658 1.0433e + 03804.6981 813.3435 88.5932
HPSO 0 25 0 0.8333 4.5644 +
Table 3

Experimental results obtained by SPSO and HPSO on functions from F 11 to F 20.

Fun DimBest WorstMedianMeanSDSignificant
   F 11 30 SPSO 0.0043 19.9630 0.0595 2.3935 5.4041
HPSO8.8818e − 168.8818e − 168.8818e − 168.8818e − 16 0 +
50 SPSO 0.0598 19.9646 12.6912 10.5673 6.3042
HPSO8.8818e − 168.8818e − 168.8818e − 168.8818e − 16 0 +
100SPSO 15.4237 20.2143 19.5200 19.4135 0.8672
HPSO8.8818e − 168.8818e − 168.8818e − 168.8818e − 16 0 +

F 12 30 SPSO 7.0274e − 0490.8935 0.0178 12.0794 31.2763
HPSO 0 0 0 0 0 +
50 SPSO 0.0014 270.8170 0.0415 45.1971 70.1274
HPSO 0 0 0 0 0 +
100SPSO 1.1140 721.0594 361.0858 376.1758 158.6584
HPSO 0 0 0 0 0 +

F 13 30 SPSO 0.1403 4.3952 0.3210 1.0567 1.4863
HPSO 0 0 0 0 0 +
50 SPSO 0.8657 15.2389 7.5828 8.2388 3.6607
HPSO 0 0 0 0 0 +
100SPSO 27.6235 64.4826 49.3984 47.7138 10.0126
HPSO 0 0 0 0 0 +

F 14 30 SPSO 6.4114e − 052.2031 0.4202 0.5373 0.5730
HPSO0.0710 0.2803 0.1301 0.1444 0.0513 +
50 SPSO 0.1882 6.9784 2.2774 2.3889 1.5688
HPSO0.1016 0.3137 0.1652 0.1702 0.0438 +
100SPSO 32.50635.1200e + 08457.9143 7.6801e + 071.5257e + 08
HPSO0.1866 0.5097 0.2703 0.2736 0.0653 +

F 15 30 SPSO −3.0000 −2.8522 −3.0000 −2.9507 0.0709
HPSO −3 −3 −3 −3 0 +
50 SPSO −5.0000 −2.3044 −4.4827 −4.2127 0.6865
HPSO −5 −5 −5 −5 0 +
100SPSO −7.9165 4.7637 −5.2127 −4.6977 2.8465
HPSO −10 −10 −10 −10 0 +

F 16 30 SPSO 2.3604e + 033.8233e + 043.8233e + 041.2375e + 049.2463e + 03
HPSO0 5.8369e + 030 390.6710 1.2756e + 03+
50 SPSO 7.1213e + 031.0427e + 053.3195e + 043.4891e + 042.2914e + 04
HPSO0 4.0529e + 030 224.6749 873.6249 +
100SPSO 6.2317e + 042.7386e + 051.4222e + 051.4697e + 055.7699e + 04
HPSO0 1.9403e + 040 1.0583e + 033.8088e + 03+

F 17 30 SPSO 6.7986e + 039.7587e + 038.3387e + 038.2508e + 03739.7223
HPSO8.3590e + 039.8803e + 039.0866e + 039.0790e + 03442.4330
50 SPSO 1.3020e + 041.7080e + 041.4999e + 041.5149e + 041.0581e + 03
HPSO1.5003e + 041.7349e + 041.6514e + 041.6310e + 04669.3538
100SPSO 2.7400e + 042.7400e + 043.1087e + 043.1149e + 042.1654e + 03
HPSO3.0329e + 043.5493e + 043.4226e + 043.3586e + 041.5320e + 03

F 18 30 SPSO 20.7888 21.0951 21.0053 20.9848 0.0712
HPSO8.8818e − 1621.1210 20.9931 11.2354 10.6894 +
50 SPSO 21.0515 21.2478 21.1455 21.1436 0.0536
HPSO8.8818e − 1621.2404 21.1366 12.0016 10.6745 +
100SPSO 21.2367 21.3931 21.3368 21.3358 0.0364
HPSO8.8818e − 1621.3949 21.3545 15.6658 9.6084 +

F 19 30 SPSO 1.0517 495.3131 273.6408 243.6176 154.3551
HPSO 0 0 0 0 0 +
50 SPSO 265.0558 1.4393e + 03798.8065 786.0782 289.8401
HPSO 0 0 0 0 0 +
100SPSO 1.9937e + 034.0158e + 032.9388e + 032.9263e + 03543.9053
HPSO 0 0 0 0 0 +

F 20 30 SPSO 22.5705 34.8494 28.6842 28.8734 3.5028
HPSO0 39.9834 0 3.1393 9.7817 +
50 SPSO 45.9462 70.7399 55.5532 55.6014 5.7839
HPSO0 66.4051 0 2.2135 12.1239 +
100SPSO 106.4483 139.8394 120.6118 121.4481 7.8030
HPSO0 129.4941 0 8.3487 31.7918 +
Table 4

Experimental results obtained by SPSO and HPSO on functions from F 21 to F 28.

Fun DimBest WorstMedianMeanSDSignificant
F 21 30 SPSO 67.1541 307.3070 213.8939 203.8842 61.8125
HPSO 0 0 0 0 0 +
50 SPSO 158.2955 715.0245 518.1705 500.5593 135.5998
HPSO0 269.3463 0 8.9782 49.1757 +
100SPSO 1.0850e + 031.9021e + 031.5793e + 031.5669e + 03190.5584
HPSO0 582.0882 0 35.5882 136.0270 +

F 22 30 SPSO 0.7999 14.9999 1.2522 2.9025 4.3553
HPSO 0 0 0 0 0 +
50 SPSO 2.0999 26.0999 13.9628 12.8291 6.9033
HPSO 0 0 0 0 0 +
100SPSO 16.5013 41.9999 35.4551 33.9791 6.3075
HPSO 0 0 0 0 0 +

F 23 30 SPSO 81.0577 4.0119e + 092.0685e + 086.8745e + 081.0469e + 09
HPSO28.8214 28.9856 28.9323 28.9252 0.0421 +
50 SPSO 3.7253e + 032.1495e + 103.6515e + 093.6515e + 095.3957e + 09
HPSO48.7069 48.8900 48.8205 48.8139 0.0479 +
100SPSO 6.7997e + 099.2655e + 103.3160e + 103.8223e + 102.0050e + 10
HPSO98.6590 98.8846 98.8109 98.7983 0.0545 +

F 24 30 SPSO 6.2312e + 082.3418e + 104.9110e + 095.8767e + 095.6099e + 09
HPSO5.9432e + 056.2859e + 097.6373e + 063.7982e + 081.2316e + 09+
50 SPSO 4.3540e + 093.3195e + 101.3961e + 101.6077e + 108.3270e + 09
HPSO3.9454e + 068.9387e + 093.1766e + 077.0962e + 081.9565e + 09+
100SPSO 4.9031e + 101.5465e + 119.1986e + 109.7151e + 102.8460e + 10
HPSO2.0551e + 085.4553e + 096.7593e + 081.1373e + 091.2367e + 09+

F 25 30 SPSO −229.5551 −78.6646 −176.9746 −174.7148 35.8633
HPSO−204.3636 −100.1465 −148.1389 −149.7299 27.1636
50 SPSO −77.4305 156.8323 22.8512 24.6168 62.2086
HPSO−102.9219 132.8077 −16.6107 −4.1921 58.2317 +
100SPSO 475.3838 860.0386 612.6947 632.8693 100.6069
HPSO394.3532 805.2473 581.1779 590.3932 80.6175 +

F 26 30 SPSO −425.5452 −331.1195 −385.1191 −387.6682 22.2647
HPSO−439.6877 −399.0205 −423.4928 −422.5533 11.3496 +
50 SPSO −399.6029 −326.6739 −379.4869 −370.8387 18.7600
HPSO−415.6822 −391.7124 −401.4635 −400.8395 6.5162 +
100SPSO −358.3688 −300.6930 −322.8060 −324.4641 15.5861
HPSO−380.3478 −360.8031 −369.0319 −370.4683 5.1369 +

F 27 30 SPSO −119.2212 −118.8710 −119.0179 −119.0258 0.0866
HPSO−119.1100 −118.8700 −118.9469 −118.9589 0.0545
50 SPSO −119.0222 −118.7656 −118.8316 −118.8535 0.0603
HPSO−118.9117 −118.7327 −118.7780 −118.7911 0.0421
100SPSO −118.7259 −118.6013 −118.6485 −118.6537 0.0310
HPSO−118.6872 −118.5986 −118.6231 −118.6289 0.0204

F 28 30 SPSO 113.2663 126.0977 118.5782 119.4693 3.6330
HPSO114.4722 132.2305 124.3094 124.5205 4.3399
50 SPSO 137.8303 153.5400 145.1433 145.1503 4.2018
HPSO141.9493 162.4008 153.9547 153.1087 5.4273
100SPSO 194.1222 232.4306 215.9257 215.9174 8.6772
HPSO212.5258 245.0126 229.4886 230.4426 7.4650
From Tables 2–4, we can clearly observe that the convergence accuracy of HPSO is better than SPSO on the most benchmark functions. An interesting result is that HPSO can find the global optimal solutions on functions F 2, F 4, F 5, F 9, F 12, F 13, F 15, F 19, and f 22 in all search spaces; that is to say, HPSO can obtain the 100% success rate on the listed functions. Considering F 1 and F 10, though HPSO can find the global optimal solutions in all different search ranges, it only obtained the mean values 333.3333 and 0.8333, respectively, in 100-dimensional space. At the same time, HPSO offers the higher convergence accuracy on functions F 3, F 6, F 7, F 11, F 14, F 16, F 20, F 21, F 23, and F 26. However, we must observe that SPSO has higher performance on function F 8. As for F 25, SPSO has better performance in 30-dimensional search space, but HPSO has better performance in 50- and 100-dimensional search spaces. As for shifted rotated functions F 27 and F 28, both SPSO and HPSO have worst convergence accuracy. As seen, the dimension of the selected functions has great effect on SPSO. For example, considering function F 1, SPSO has mean value 666.6686, 3.6667e + 03, and 4.0698e + 04 in 30-dimensional, 50-dimensional, and 100-dimensional search spaces, respectively, while HPSO has mean values 0, 0, and 333.333 in the corresponding search space. Therefore, we also conclude that HPSO has better stability than SPSO from the data in different search spaces. In the 9th columns of Tables 2–4, we report the statistical significance level of the difference of the means of the two algorithms. Note that here “+” indicates that the t value is significant at a 0.05 level of significance by two-tailed test, and “−” stands for the difference of means that is not statistically significant. Figure 4 graphically presents the comparison in terms of convergence characteristics of the evolutionary processes in solving the selected benchmark functions in 30-dimensional search space with N = 30 and T = 1000.
Figure 4

Convergence comparison of HPSO and SPSO on the selected test functions with D = 30, N = 30, and T = 1000.  

4.3. Comparison of HPSO with Other PSO Algorithms

In this section, a comparison of HPSO with some well-known PSO algorithms which are listed in Table 5 is performed to evaluate the efficiency of the proposed algorithm.
Table 5

Some well-known PSOs algorithms in the literature.

AlgorithmYear Topology Parameter settings
GPSO 1998 Global star w: 0.9 − 0.4, c 1 = c 2 = 2.0
LPSO 2002 Local ring w: 0.9 − 0.4, c 1 = c 2 = 2.0
FIPS 2004 Local Uringχ = 0.729, ∑c i = 4.1
HPSO-TVAC2004 Global star w: 0.9 − 0.4, c 1 : 2.5 − 0.5, and c 2: 0.5 − 2.5
UPSO 2004 Global star w: 0.9 − 0.4, c 1 = c 2 = 2.0, and U = 0.5
DMS-PSO 2005 Dynamic multiswarm w: 0.9 − 0.2, c 1 = c 2 = 2.0, m = 3, and R = 5
VPSO 2006 Local Von Neumann w: 0.9 − 0.4, c 1 = c 2 = 2.0
CLPSO 2006 Comprehensive learning w: 0.9 − 0.4, c = 1.49445, and m = 7
QIPSO 2007 Global star w: 0.9 − 0.4, c 1 = c 2 = 2.0
APSO 2009 Global star w: 0.9, c 1 = c 2 = 2.0; δ : random  in  [0.05,0.1], σ: 1 − 0.1
AFPSO 2011 Global star w: 0.9 − 0.4, c 1, and c 2 are based on fuzzy rule
AFPSO-QI 2011 Global star w: 0.9 − 0.4, c 1, and c 2 are based on fuzzy rule
At first, we choose 10 unimodal and multimodal test functions for this evaluation. According to [22], the algorithms GPSO [2], LPSO [16], VPSO [27], FIPS [28], HPSO-TVAC [6], DMS-PSO [29], CLPSO [24], and APSO [22] are considered as detailed in Table 5. The experimental results of the algorithms are directly from [22] as shown in Table 6. In this trial, the population size N = 20, the dimension D = 30, and the maximum fitness evaluations (FEs) were set to 2 × 105 also. The parameter configurations of the selected algorithms have been set according to their corresponding references. The inertia weight w is linearly decreased from 0.9 to 0.4 in HPSO. HPSO is independently run 30 times and the mean and SD are shown in Table 6. As seen, HPSO has the first rank among the algorithms and obtains the global minimum on functions F 1, F 2, F 5, F 9, F 10, and F 12 and gives the good near-global optima on functions F 6 and F 11. Meanwhile, HPSO has the worst performance on functions F 3 and F 14. As for F 3, APSO has the best convergence accuracy, and HPSO only wins CLPSO. Considering F 14, DMS-PSO has the best performance.
Table 6

Comparison results of eight PSO algorithms [22] with HPSO on 10 functions (N = 20, D = 30, and FEs = 2 × 105).

FunctionGPSO LPSO VPSO FIPS HPSO-TVACDMS-PSOCLPSO APSO HPSO
F 1
 Mean1.98e − 534.77e − 295.11e − 383.21e − 303.38e − 413.85e − 541.89e − 191.45e − 150 0
 SD 7.08e − 531.13e − 281.91e − 373.60e − 308.50e − 411.75e − 531.49e − 195.73e − 150 0
 Rank4 8 6 7 5 3 9 2 1
F 2
 Mean2.51e − 342.03e − 206.29e − 271.32e − 176.9e − 232.61e − 291.01e − 135.15e − 84 0
 SD 5.84e − 342.89e − 208.68e − 277.86e − 186.89e − 236.6e − 296.51e − 141.44e − 83 0
 Rank3 7 5 8 6 4 9 2 1
F 3
 Mean6.45e − 218.60 1.44 0.77 2.89e − 747.5 395 1.0e − 10167
 SD 9.45e − 230.71 1.55 0.86 2.97e − 756.4 142 2.13e − 10913
 Rank3 6 5 4 2 7 9 1 8
F 5
 Mean 0 0 0 0 0 0 0 0 0
 SD 0 0 0 0 0 0 0 0 0
 Rank 1 1 1 1 1 1 1 1 1
F 6
 Mean7.77e − 31.49e − 21.08e − 22.55e − 35.54e − 21.1e − 23.92e − 34.66e − 31.03e − 04
 SD 2.42e − 35.66e − 33.24e − 36.25e − 42.08e − 23.94e − 31.14e − 31.7e − 38.99e − 05
 Rank5 8 6 2 9 7 3 4 1
F 9
 Mean30.7 34.90 34.09 29.98 2.39 28.1 2.57e − 115.8e − 15 0
 SD 8.68 7.25 8.07 10.92 3.71 6.42 6.64e − 111.01e − 14 0
 Rank7 9 8 6 4 5 3 2 1
F 10
 Mean15.5 30.40 21.33 35.91 1.83 32.8 0.167 4.14e − 16 0
 SD 7.4 9.23 9.46 9.49 2.65 6.49 0.379 1.45e − 15 0
 Rank5 7 6 9 4 8 3 2 1
F 11
 Mean1.15e − 141.85e − 141.4e − 147.69e − 152.06e − 108.52e − 152.01e − 121.11e − 148.88e − 16
 SD 2.27e − 154.80e − 153.48e − 159.33e − 169.45e − 101.79e − 159.22e − 133.55e − 15 0
 Rank5 7 6 2 9 3 8 4 1
F 12
 Mean2.37e − 21.10e − 21.31e − 29.04e − 41.07e − 21.31e − 26.45e − 131.67e − 2 0
 SD 2.57e − 21.60e − 21.35e − 22.78e − 31.14e − 21.73e − 22.07e − 122.41e − 2 0
 Rank9 5 6 3 4 7 2 8 1
F 14
 Mean1.04e − 22.18e − 303.46e − 31.22e − 317.07e − 302.05e − 321.59e − 213.76e − 311.70e − 2
 SD 3.16e − 25.14e − 301.89e − 24.85e − 324.05e − 308.12e − 331.93e − 211.2e − 301.42e − 2
 Rank8 4 7 2 5 1 6 3 9

Average rank5 6.2 5.6 4.4 4.9 4.6 5.3 2.9 2.5
Final rank6 9 8 3 5 4 7 2 1
Then, in the next step, we choose six functions from [25] and seven algorithms of GPSO, QIPSO [30], UPSO [31], FIPS, AFSO [25], and AFSO-Q1 [25] as detailed in Table 5. For a fair comparison, the population size N = 30, the dimension D = 30, and the maximum iteration T = 10,000 also in HPSO, and the inertia weight w is linearly decreased from 0.9 to 0.4. HPSO is independently run 30 times and the mean and SD are shown in Table 7. As seen, HPSO shows better performance and has the first rank. HPSO finds the global optimal solution on functions F 9, F 13, F 21, and F 22. FIPS and UPSO have better convergence accuracy on functions F 27 and F 28, respectively.
Table 7

Comparison results of seven PSO algorithms [25] with HPSO on six functions (N = 30, D = 30, and T = 10,000).

FunctionSPSO QIPSO UPSO FIPSCLPSOAFSO AFSO-Q1HPSO
F 9
 Mean52.30 25.61 59.40 106.1 74.39 17.93 15.69 0
 SD 27.35 15.98 58.05 30.54 9.77 5.63 4.47 0
 Rank5 4 6 8 7 3 2 1
F 13
 Mean0.534 36.38 8.70 6.40 1.39e − 034.52e − 031.50e − 03 0
 SD 1.74 4.66 3.08 3.04 3.28e − 049.20e − 033.48e − 03 0
 Rank5 8 7 6 2 4 3 1
F 21
 Mean320.2 317.5 309.5 434.1 263.3 266.3 253.3 0
 SD 14.70 23.24 25.88 34.99 11.96 12.00 12.63 0
 Rank7 6 5 8 3 4 2 1
F 22
 Mean17.03 15.20 14.29 26.60 11.94 10.38 8.46 0
 SD 2.55 1.32 2.15 1.42 1.37 1.38 0.948 0
 Rank7 6 5 8 4 3 2 1
F 27
 Mean−119.10 −119.10 −119.10 −119.90 −119.00 −119.70 −119.80 −119.05
 SD 7.09e − 025.68e − 023.24e − 023.78e − 024.28e − 023.85e − 025.45e − 025.50e − 02
 Rank4 4 4 1 6 3 2 5
F 28
 Mean115.90 121.90 113.20 113.60 118.30 123.20 123.10 117.32
 SD 2.90 4.90 6.14 3.63 2.40 2.25 3.01 3.65
 Rank3 6 1 2 5 8 7 4

Average rank5.175.674.67 5.50 4.50 4.17 3.00 2.17
Final rank6 8 5 7 4 3 2 1
Therefore, it is worth saying that the proposed algorithm has considerably better performance than the other well-known PSO algorithms in unimodal and multimodal high-dimensional functions.

5. Conclusion

In this paper, a modified version of PSO called HPSO has been introduced to enhance the performance of SPSO. To simulate the human behavior, the global worst particle was introduced into the velocity equation of SPSO, and the learning coefficient which obeys the standard normal distribution can balance the exploration and exploitation abilities by changing the flying direction of particles. When the coefficient is positive, it is called impelled leaning coefficient, which is helpful to enhance the exploration ability. When the coefficient is negative, it is called penalized learning coefficient, which is beneficial for improving the exploitation ability. At the same time, the acceleration coefficients c 1 and c 2 have been replaced with two random numbers, whose sum is equal to  1 in [0,1]; this strategy decreases the dependence on parameters of the solved problems. The proposed algorithm has been evaluated on 28 benchmark functions including unimodal, unrotated multimodal, rotated, shifted, and shifted rotated functions, and the experimental results confirm the high performance of HPSO on the main functions. However, as seen, HPSO has the worst performance on shifted rotated functions, so it is worth researching how to enhance the performance of HPSO on shifted rotated functions in the future. Meanwhile, applying HPSO to solve real-world problems is also a research field.
  3 in total

1.  Particle swarm optimization with recombination and dynamic linkage discovery.

Authors:  Ying-Ping Chen; Wen-Chih Peng; Ming-Chung Jian
Journal:  IEEE Trans Syst Man Cybern B Cybern       Date:  2007-12

2.  Adaptive particle swarm optimization.

Authors:  Zhi-Hui Zhan; Jun Zhang; Yun Li; Henry Shu-Hung Chung
Journal:  IEEE Trans Syst Man Cybern B Cybern       Date:  2009-04-07

3.  Re-evaluating genetic algorithm performance under coordinate rotation of benchmark functions. A survey of some theoretical and practical aspects of genetic algorithms.

Authors:  R Salomon
Journal:  Biosystems       Date:  1996       Impact factor: 1.973

  3 in total

北京卡尤迪生物科技股份有限公司 © 2022-2023.