Differential evolution

From testwiki
Jump to navigation Jump to search

Template:Short description Template:Evolutionary algorithms

Differential Evolution optimizing the 2D Ackley function.

Differential evolution (DE) is an evolutionary algorithm to optimize a problem by iteratively trying to improve a candidate solution with regard to a given measure of quality. Such methods are commonly known as metaheuristics as they make few or no assumptions about the optimized problem and can search very large spaces of candidate solutions. However, metaheuristics such as DE do not guarantee an optimal solution is ever found.

DE is used for multidimensional real-valued functions but does not use the gradient of the problem being optimized, which means DE does not require the optimization problem to be differentiable, as is required by classic optimization methods such as gradient descent and quasi-newton methods. DE can therefore also be used on optimization problems that are not even continuous, are noisy, change over time, etc.[1]

DE optimizes a problem by maintaining a population of candidate solutions and creating new candidate solutions by combining existing ones according to its simple formulae, and then keeping whichever candidate solution has the best score or fitness on the optimization problem at hand. In this way, the optimization problem is treated as a black box that merely provides a measure of quality given a candidate solution and the gradient is therefore not needed.

History

Storn and Price introduced Differential Evolution in 1995.[2][3][4] Books have been published on theoretical and practical aspects of using DE in parallel computing, multiobjective optimization, constrained optimization, and the books also contain surveys of application areas.[5][6][7][8] Surveys on the multi-faceted research aspects of DE can be found in journal articles.[9][10]

Algorithm Template:Anchor

A basic variant of the DE algorithm works by having a population of candidate solutions (called agents). These agents are moved around in the search-space by using simple mathematical formulae to combine the positions of existing agents from the population. If the new position of an agent is an improvement then it is accepted and forms part of the population, otherwise the new position is simply discarded. The process is repeated and by doing so it is hoped, but not guaranteed, that a satisfactory solution will eventually be discovered.

Formally, let f:ℝnℝ be the fitness function which must be minimized (note that maximization can be performed by considering the function h:=f instead). The function takes a candidate solution as argument in the form of a vector of real numbers. It produces a real number as output which indicates the fitness of the given candidate solution. The gradient of f is not known. The goal is to find a solution 𝐦 for which f(𝐦)f(𝐩) for all 𝐩 in the search-space, which means that 𝐦 is the global minimum.

Let 𝐱ℝn designate a candidate solution (agent) in the population. The basic DE algorithm can then be described as follows:

  • Choose the parameters NP4, CR[0,1], and F[0,2].
    • NP : NP is the population size, i.e. the number of candidate agents or "parents".
    • CR : The parameter CR[0,1] is called the crossover probability.
    • F : The parameter F[0,2] is called the differential weight.
    • Typical settings are NP=10n, CR=0.9 and F=0.8.
    • Optimization performance may be greatly impacted by these choices; see below.
  • Initialize all agents 𝐱 with random positions in the search-space.
  • Until a termination criterion is met (e.g. number of iterations performed, or adequate fitness reached), repeat the following:
    • For each agent 𝐱 in the population do:
      • Pick three agents 𝐚,𝐛, and 𝐜 from the population at random, they must be distinct from each other as well as from agent 𝐱. (𝐚 is called the "base" vector.)
      • Pick a random index R{1,,n} where n is the dimensionality of the problem being optimized.
      • Compute the agent's potentially new position 𝐲=[y1,,yn] as follows:
        • For each i{1,,n}, pick a uniformly distributed random number riU(0,1)
        • If ri<CR or i=R then set yi=ai+F×(bici) otherwise set yi=xi. (Index position R is replaced for certain.)
      • If f(𝐲)f(𝐱) then replace the agent 𝐱 in the population with the improved or equal candidate solution 𝐲.
  • Pick the agent from the population that has the best fitness and return it as the best found candidate solution.

Parameter selection

Performance landscape showing how the basic DE performs in aggregate on the Sphere and Rosenbrock benchmark problems when varying the two DE parameters NP and F, and keeping fixed CR=0.9.

The choice of DE parameters NP, CR and F can have a large impact on optimization performance. Selecting the DE parameters that yield good performance has therefore been the subject of much research. Rules of thumb for parameter selection were devised by Storn et al.[4][5] and Liu and Lampinen.[11] Mathematical convergence analysis regarding parameter selection was done by Zaharie.[12]

Constraint handling

Differential evolution can be utilized for constrained optimization as well. A common method involves modifying the target function to include a penalty for any violation of constraints, expressed as: f(~x)=f(x)+ρ×CV(x). Here, CV(x) represents either a constraint violation (an L1 penalty) or the square of a constraint violation (an L2 penalty).

This method, however, has certain drawbacks. One significant challenge is the appropriate selection of the penalty coefficient ρ. If ρ is set too low, it may not effectively enforce constraints. Conversely, if it's too high, it can greatly slow down or even halt the convergence process. Despite these challenges, this approach remains widely used due to its simplicity and because it doesn't require altering the differential evolution algorithm itself.

There are alternative strategies, such as projecting onto a feasible set or reducing dimensionality, which can be used for box-constrained or linearly constrained cases. However, in the context of general nonlinear constraints, the most reliable methods typically involve penalty functions.

Variants

Variants of the DE algorithm are continually being developed in an effort to improve optimization performance.[13] The following directions of development can be outlined:

  • New schemes for performing crossover and mutation of agents[4]
  • Various strategies for handling constraints
  • Adaptive strategies that dynamically adjust population size, F and CR parameters
  • Specialized algorithms for large-scale optimization
  • Multi-objective and many-objective algorithms
  • Techniques for handling binary/integer variables

See also

References

Template:Reflist

Template:Evolutionary computation Template:Major subfields of optimization

  1. ↑ Cite error: Invalid <ref> tag; no text was provided for refs named elediadereview
  2. ↑ Template:Cite journal
  3. ↑ Cite error: Invalid <ref> tag; no text was provided for refs named storn97differential
  4. ↑ 4.0 4.1 4.2 Cite error: Invalid <ref> tag; no text was provided for refs named storn96usage
  5. ↑ 5.0 5.1 Cite error: Invalid <ref> tag; no text was provided for refs named price05differential
  6. ↑ Cite error: Invalid <ref> tag; no text was provided for refs named feoktistov06differential
  7. ↑ Cite error: Invalid <ref> tag; no text was provided for refs named onwubolu04techniques
  8. ↑ Cite error: Invalid <ref> tag; no text was provided for refs named chakraborty08advances
  9. ↑ Template:Cite journal
  10. ↑ Template:Cite journal
  11. ↑ Cite error: Invalid <ref> tag; no text was provided for refs named liu02setting
  12. ↑ Cite error: Invalid <ref> tag; no text was provided for refs named zaharie02critical
  13. ↑ Template:Cite book