Artificial bee colony algorithm

From Infogalactic: the planetary knowledge core
Jump to: navigation, search

Lua error in package.lua at line 80: module 'strict' not found. In computer science and operations research, the artificial bee colony algorithm (ABC) is an optimization algorithm based on the intelligent foraging behaviour of honey bee swarm, proposed by Karaboga in 2005.[1]

Algorithm

In the ABC model, the colony consists of three groups of bees: employed bees, onlookers and scouts. It is assumed that there is only one artificial employed bee for each food source. In other words, the number of employed bees in the colony is equal to the number of food sources around the hive. Employed bees go to their food source and come back to hive and dance on this area. The employed bee whose food source has been abandoned becomes a scout and starts to search for finding a new food source. Onlookers watch the dances of employed bees and choose food sources depending on dances. The main steps of the algorithm are given below:

  • Initial food sources are produced for all employed bees
  • REPEAT
    • Each employed bee goes to a food source in her memory and determines a neighbour source, then evaluates its nectar amount and dances in the hive
    • Each onlooker watches the dance of employed bees and chooses one of their sources depending on the dances, and then goes to that source. After choosing a neighbour around that, she evaluates its nectar amount.
    • Abandoned food sources are determined and are replaced with the new food sources discovered by scouts.
    • The best food source found so far is registered.
  • UNTIL (requirements are met)

In ABC, a population based algorithm, the position of a food source represents a possible solution to the optimization problem and the nectar amount of a food source corresponds to the quality (fitness) of the associated solution. The number of the employed bees is equal to the number of solutions in the population. At the first step, a randomly distributed initial population (food source positions) is generated. After initialization, the population is subjected to repeat the cycles of the search processes of the employed, onlooker, and scout bees, respectively. An employed bee produces a modification on the source position in her memory and discovers a new food source position. Provided that the nectar amount of the new one is higher than that of the previous source, the bee memorizes the new source position and forgets the old one. Otherwise she keeps the position of the one in her memory. After all employed bees complete the search process, they share the position information of the sources with the onlookers on the dance area. Each onlooker evaluates the nectar information taken from all employed bees and then chooses a food source depending on the nectar amounts of sources. As in the case of the employed bee, she produces a modification on the source position in her memory and checks its nectar amount. Providing that its nectar is higher than that of the previous one, the bee memorizes the new position and forgets the old one. The sources abandoned are determined and new sources are randomly produced to be replaced with the abandoned ones by artificial scouts.

Artificial Bee Colony Algorithm

ABC is a swarm intelligence algorithm proposed by Karaboga in 2005, which is inspired by the behavior of honey bees. Since the development of ABC, it has been applied to solve different kinds of problems. Artificial bee colony (ABC) algorithm is a recently proposed optimization technique which simulates the intelligent foraging behavior of honey bees. A set of honey bees is called swarm which can successfully accomplish tasks through social cooperation. In the ABC algorithm, there are three types of bees: employed bees, onlooker bees, and scout bees. The employed bees search food around the food source in their memory; meanwhile they share the information of these food sources to the onlooker bees. The onlooker bees tend to select good food sources from those found by the employed bees. The food source that has higher quality (fitness) will have a large chance to be selected by the onlooker bees than the one of lower quality. The scout bees are translated from a few employed bees, which abandon their food sources and search new ones.

In the ABC algorithm, the first half of the swarm consists of employed bees, and the second half constitutes the onlooker bees.

The number of employed bees or the onlooker bees is equal to the number of solutions in the swarm. The ABC generates a randomly distributed initial population of SN solutions (food sources), where SN denotes the swarm size.

Let X_i=\{x_1,1,x_2,2,\ldots,x_n,n\} represent the i^{th} solution in the swarm, Where n is the dimension size. Each employed bee X_{i} generates a new candidate solution V_{i} in the neighborhood of its present position as equation below:

V_{i_{k}} = X_{i_{k}}+\Phi_{i_{k}}\times (X_{i_k}-X_{j_k})

Where X_{j} is a randomly selected candidate solution (i\neq j),  k is a random dimension index selected from the set \{1,2,\ldots,n\} , and \Phi_{i_{k}} is a random number within [-1,1] . Once the new candidate solution V_i is generated, a greedy selection is used. If the fitness value of V_i is better than that of its parent X_i, then update X_i with V_i; otherwise keep X_i unchangeable. After all employed bees complete the search process; they share the information of their food sources with the onlooker bees through waggle dances. An onlooker bee evaluates the nectar information taken from all employed bees and chooses a food source with a probability related to its nectar amount. This probabilistic selection is really a roulette wheel selection mechanism which is described as equation below:

P_i=\frac{fit_i}{\sum_j{fit_j}}

Where fit_i is the fitness value of the i^{th} solution in the swarm. As seen, the better the solution i, the higher the probability of the i^{th}food source selected. If a position cannot be improved over a predefined number (called limit) of cycles, then the food source is abandoned. Assume that the abandoned source is X_i, and then the scout bee discovers a new food source to be replaced with i^{th} as equation below:

X_{i_{k}}=lb_{j}+rand(0,1)\times(ub_{j}-lb_{j})

Where rand(0,1) is a random number within[0,1] based on a normal distribution and lb,ub, are lower and upper boundaries of the i^{th} dimension, respectively.

Extensions and Variants

In 2011, Wu et al. proposed a fitness-scaled chaotic artificial bee colony.[2] They termed their method as FSCABC.

In 2015, Wang et al. compared FSCABC with Biogeography-based optimization and found they obtained equal performances.[3]

Application to real-world problems

Since 2005, D. Karaboga and his research group have been studying the ABC algorithm and its applications to real world problems.

Structural optimization

In 2010, Hadidi et al. employed an Artificial Bee Colony (ABC) Algorithm based approach for structural optimization.[4]

Image Segmentation

In 2011, Y. Zhang et al. employed the ABC for multi-level threshold.[5]

Pathological brain detection

In 2011, Wu et al. employed the ABC for Pathological Brain Detection (PBD),.[6]

nanoelectronic based phase-locked loop

Artificial Bee Colony (ABC) algorithm has been used for nanoelectronic based phase-locked loop (PLL) optimization by O. Garitselov, S. P. Mohanty, and E. Kougianos to speedup physical design optimization.[7]

See also

References

  1. D. Dervis Karaboga, An Idea Based On Honey Bee Swarm for Numerical Optimization, Technical Report-TR06,Erciyes University, Engineering Faculty, Computer Engineering Department 2005.
  2. Lua error in package.lua at line 80: module 'strict' not found.
  3. Lua error in package.lua at line 80: module 'strict' not found.
  4. Ali Hadidi, Sina Kazemzadeh Azad, Saeid Kazemzadeh Azad, Structural optimization using artificial bee colony algorithm, 2nd International Conference on Engineering Optimization, 2010, September 6 – 9, Lisbon, Portugal.
  5. Lua error in package.lua at line 80: module 'strict' not found.
  6. Lua error in package.lua at line 80: module 'strict' not found.
  7. O. Garitselov, S. P. Mohanty, and E. Kougianos, “Accurate Polynomial Metamodeling-Based Ultra-Fast Bee Colony Optimization of a Nano-CMOS PLL”, Special Issue on Power, Parasitics, and Process-Variation (P3) Awareness in Mixed-Signal Design, Journal of Low Power Electronics (JOLPE), Volume 8, Issue 3, June, 2012, pp. 317--328.

External links