Firefly algorithm
The firefly algorithm (FA) is a metaheuristic algorithm, inspired by the flashing behaviour of fireflies. The primary purpose for a firefly's flash is to act as a signal system to attract other fireflies. Xin-She Yang formulated this firefly algorithm by assuming:[1]
- All fireflies are unisexual, so that one firefly will be attracted to all other fireflies;
- Attractiveness is proportional to their brightness, and for any two fireflies, the less brighter one will be attracted by (and thus move to) the brighter one; however, the brightness can decrease as their distance increases;
- If there are no fireflies brighter than a given firefly, it will move randomly.
The brightness should be associated with the objective function.
Firefly algorithm is a nature-inspired metaheuristic optimization algorithm.
Contents |
Algorithm description
The pseudo code can be summarized as:
Begin
1) Objective function:; 2) Generate an initial population of fireflies
;. 3) Formulate light intensity I so that it is associated with
(for example, for maximization problems,
or simply
; 4) Define absorption coefficient γ While (t<MaxGeneration) for i=1:n (all n fireflies) for j=1:i (n fireflies) if (Ij > Ii), move firefly i towards j; end if Vary attractiveness with distance r via
; Evaluate new solutions and update light intensity; end for j end for i Rank fireflies and find the current best; end while Post-processing the results and visualization;
end
The main update formula for any pair of two fireflies and
is
where αt is a parameter controlling the step size, while is a vector drawn from a Gaussian or other distribution.
It can be shown that the limiting case corresponds to the standard Particle Swarm Optimization (PSO). In fact, if the inner loop (for j) is removed and the brightness Ij is replaced by the current global best g * , then FA essentially becomes the standard PSO.
Implementation Guides
The γ should be related to the scales of design variables. Ideally, the β term should be order one, which requires that γ should be linked with scales. For example, one possible choice is to use where L is the average scale of the problem. In case of scales vary significantly, γ can be considered as a vector to suit different scales in different dimensions. Similarly, αt should also be linked with scales. For example,
. It is worth pointing out the above description does not include the randomness reduction. In fact, in actual implementation by most researchers, the motion of the fireflies is gradually reduced by an annealing-like randomness reduction via α = α0δt where 0 < δ < 1(e.g.δ = 0.97).[2] In some difficult problem, it may be helpful if you increase αt at some stages, then reduce it when necessary. This non-monotonic variation of αt will enable the algorithm to escape any local optima when in the unlikely case it might get stuck if randomness is reduced too quickly.
Parametric studies show that n (number of fireflies) should be about 15 to 40 for most problems.[3]A python implementation is also available, though with limited functionalities.[4]
Recent studies shows that the firefly algorithm is very efficient,[5] and could outperform other metaheuristic algorithms including particle swarm optimization.[6] Most metaheuristic algorithms may have difficulty in dealing with stochastic test functions, and it seems that firefly algorithm can deal with stochastic test functions[7] very efficiently. In addition, FA is also better for dealing with noisy optimization problems with ease of implementation.[8][9]
Variants of Firefly Algorithm
Discrete Firefly Algorithm (DFA)
A discrete version of Firefly Algorithm, namely, Discrete Firefly Algorithm (DFA) proposed recently by M. K. Sayadi, R. Ramezanian and N. Ghaffari-Nasab can efficiently solve NP-hard scheduling problems.[10] DFA outperforms existing algorithms such as the ant colony algorithm.
For image segmentation, the FA-based method is far more efficient to Otsu's method and recursive Otsu.[11] Meanwhile, a good implementation of a discrete firefly algorithm for QAP problems has been carried out by Durkota.[12]
Multiobjective FA
An important study of FA was carried out by Apostolopoulos and Vlachos,[13] which provides a detailed background and analysis over a wide range of test problems including multobjective load dispatch problem.
Lagrangian FA
An interesting, Lagrangian firefly algorithm is proposed to solve power system optimization unit commitment problems.[14]
Chaotic FA
A chaotic firefly algorithm (CFA) was developed and found to outperform the previously best-known solutions available.[15]
Hybrid Algorithms
A hybrid intelligent scheme has been developed by combining the firefly algorithm with the ant colony optimization.[16]
Applications
Digital Image Compression
Very recently, an FF-LBG algorithm for vector quantization of digital image compression was based on the firefly algorithm, which proves to be faster than other algorithms such as PSO-LBG and HBMO-LBG (particle swarm optimization and honey-bee mating optimization; variations on the Linde–Buzo–Gray algorithm).[17] [18] For minimum cross entropy thresholding, firefly-based algorithm uses the least computation time[19]
Eigenvalue optimization
Eigenvalue optimization of isospectral systems has solved by FA and multiple optimum points have been found efficiently.[20]
Feature selection and fault detection
Feature selection can be also carried out successfully using firefly algorithm.[21] Real-time fault identification in large systems becomes viable, based on the recent work on fault identification with binary adaptive firefly optimization.[22]
Antenna Design
Firefly algorithms outperforms ABC for optimal design of linear array of isotropic sources.[23]
Structural Design
For mixed-variable problems, many optimization algorithms may struggle. However, firefly algorithm can efficiently sove optimization problems with mixed variables.[24] [25]
Scheduling and TSP
Firefly-based algorithms for scheduling task graphs and job shop scheduling requires less computing than all other metaheuristics.[26][27] A binary firefly algorithm has been developed to tackle the knapsack cryptosystem efficiently[28] Recently, an evolutionary discrete FA has been developed for solving travelling salesman problems[29] Further improvement in performance can be obtained by using preferential directions in firefly movements.
Semantic Web Composition
A hybrid FA has been developed by Pop et al. for selecting optimal solution in semantic web service composition.[30]
Clustering
Performance study for clustering also suggested that firefly algorithm is very efficient.[31]
Dynamic Problems
Firefly algorithm can solve optimization problems in dynamic environments very efficiently. [32][33]
See also
References
- ^ Yang, X. S. (2008). Nature-Inspired Metaheuristic Algorithms. Frome: Luniver Press. ISBN 1905986106.
- ^ http://www.mathworks.com/matlabcentral/fileexchange/29693-firefly-algorithm/content/fa_mincon.m
- ^ A simple demo Matlab code is available
- ^ http://code.google.com/p/csc6810project/
- ^ Yang, X. S. (2009). "Firefly algorithms for multimodal optimization". Stochastic Algorithms: Foundations and Applications, SAGA 2009. Lecture Notes in Computer Sciences. 5792. pp. 169–178. arXiv:1003.1466.
- ^ Lukasik, S.; Zak, S. (2009). Firefly algorithm for continuous constrained optimization task. 5796. pp. 97–100.
- ^ Yang, X.-S. (2010). "Firefly algorithm, stochastic test functions and design optimisation". Int. J. Bio-inspired Computation 2 (2): 78–84. arXiv:1003.1409.
- ^ Chai-ead, N.; Aungkulanon, P.; Luangpaiboon, P. (2011). "Bees and firefly algorithms for noisy non-linear optimisation problems". Prof. Int. Multiconference of Engineers and Computer Scientists 2011 2: 1449–1454.
- ^ Aungkulanon, P.; Chai-ead, N.; Luangpaiboon, P. (2011). "Simulated manufacturing process improvement via particle swarm optimisation and firefly algorithms". Prof. Int. Multiconference of Engineers and Computer Scientists 2011 2: 1123–1128.
- ^ Sayadi, M. K.; Ramezanian, R.; Ghaffari-Nasab, N. (2010). "A discrete firefly meta-heuristic with local search for makespan minimization in permutation flow shop scheduling problems". Int. J. of Industrial Engineering Computations 1: 1–10. http://growingscience.com/ijiec/VOL1/IJIEC_2010_7.pdf.
- ^ T. Hassanzadeh, H. Vojodi and A. M. E. Moghadam, An image segmentation approach based on maximum variance intra-cluster method and firefly algorithm, in: Proc. of 7th Int. Conf. on Natural Computation (ICNC), pp. 1817-1821 (2011).
- ^ K. Durkota, Implementation of a discrete firefly algorithm for the QAP problem within the sage framework, BSc thesis, Czech Technical University, (2011). http://cyber.felk.cvut.cz/research/theses/papers/189.pdf
- ^ Apostolopoulos, T.; Vlachos, A. (2011). "Application of the Firefly Algorithm for Solving the Economic Emissions Load Dispatch Problem". International Journal of Combinatorics 2011: Article ID 523806. http://www.hindawi.com/journals/ijct/2011/523806.html.
- ^ Rampriya B., Mahadevan K. and Kannan S., Unit commitment in deregulated power system using Lagrangian firefly algorithm, Proc. of IEEE Int. Conf. on Communication Control and Computing Technologies (ICCCCT), pp. 389-393 (2010).
- ^ L. dos Santos Coelho, D. L. de Andrade Bernert, V. C. Mariani, a chaotic firefly algorithm applied to reliability-redundancy optimization, in: 2011 IEEE Congress on Evolutionary Computation (CEC'11), pp. 517-521 (2011).
- ^ G. Giannakouris, V. Vassiliadis and G. Dounias, Experimental study on a hybrid nature-inspired algorithm for financial portfolio optimization, SETN 2010, LNAI 6040, pp. 101-111 (2010).
- ^ Horng M.-H. and Jiang T. W., The codebook design of image vector quantization based on the firefly algorithm, in: Computational Collective Intelligence, Technologies and Applications, LNCS, Vol. 6423, pp. 438-447 (2010).
- ^ M.-H. Horng, vector quantization using the firefly algorithm for image compression, Expert Systems with Applications, Vol. 38, (article in press) 12 Aug. (2011).
- ^ M.-H. Horng and R.-J Liou, Multilevel minimum cross entropy threshold selection based on the firefly algorithm, Expert Systems with Applications, Vol. 38, Issue 12, 14805-14811 (2011).
- ^ R. Dutta, R. Ganguli and V. Mani, Exploring isospectral spring-mass systems with firefly algorithm, Proc. Roy. Soc. A., Vol. 467, (2011)http://rspa.royalsocietypublishing.org/content/early/2011/06/16/rspa.2011.0119.abstract
- ^ H. Banati and M. Bajaj, Firefly based feature selection approach, Int. J. Computer Science Issues, vol. 8, No. 2, 473-480 (2011).
- ^ R. Falcon, M. Almeida and A. Nayak, Fault identification with binary adaptive fireflies in parallel and distributed systems, IEEE Congress on Evolutionary Computation, (2011).
- ^ B. Basu and G. K. Mahanti, Firefly and artificial bees colony algorithm for synthesis of scanned and broadside linear array antenna, Progress in Electromagnetic Research B., Vol. 32, 169-190 (2011).
- ^ A. H. Gandomi, X. S. Yang, A. H. Alavi, Mixed variable structural optimization using firefly algorithm, Computers and Structures, Vol. 89, No. 23-24, pp. 2325-2336 (2011). doi:10.1016/j.compstruc.2011.08.002
- ^ Sina Kazemzadeh Azad, Saeid Kazemzadeh Azad, “Optimum Design of Structures Using an Improved Firefly Algorithm”, International Journal of Optimization in Civil Engineering; 1(2):327-340, 2011
- ^ U. Hönig, A firefly algorithm-based approach for scheduling task graphs in homogenous systems, Proceeding Informatics,DOI: 10.2316/P.2010.724-033, 724 (2010).
- ^ A. Khadwilard, S. Chansombat, T. Thepphakorn, P. Thapatsuwan, W. Chainat, P. Pongcharoen, Application of firefly algorithm and its parameter setting for job shop scheduling, First Symposius on Hands-On Research and Development, (2011).
- ^ S. Palit, S. Sinha, M. Molla, A. Khanra, M. Kule, A cryptanalytic attack on the knapsack cryptosystem using binary Firefly algorithm, in: 2nd Int. Conference on Computer and Communication Technology (ICCCT), 15-17 Sept 2011,India, pp. 428-432 (2011).
- ^ G. K. Jati and S. Suyanto, Evolutionary discrete firefly algorithm for travelling salesman problem, ICAIS2011, Lecture Notes in Artificial Intelligence (LNAI 6943), pp.393-403 (2011).
- ^ C. B. Pop, V. R. Chifu, I. Salomie,R. B. Baico, M. Dinsoreanu, G. Copil, A hybrid firefly-inspired approach for optimal semantic web service composition, in: Proc. of 2nd Workshop on Software Services: Cloud Computing and Applications, June, 2011.
- ^ J. Senthilnath, S. N. Omkar and V. Mani, Clustering using firefly algorithm: Performance study, Swarm and Evolutionary Computation, June (2011). doi:10.1016/j.swevo.2011.06.003
- ^ S. M. Farahani, B. Nasiri and M. R. Meybodi, A multiswarm based firefly algorithm in dynamic environments, Third Int. Conference on Signal Processing Systems (ICSPS2011), Aug 27-28, Yantai, China, pp. 68-72 (2011)
- ^ A. A. Abshouri, M. R. Meybodi and A. Bakhtiary, New firefly algorithm based on multiswarm and learning automata in dynamic environments, Third Int. Conference on Signal Processing Systems (ICSPS2011), Aug 27-28, Yantai, China, pp. 73-77 (2011).
External links
|