what is the importance of crossing over in Differential Evolution Algorithm?
Asked Answered
C

1

5

In Differential Evolution Algorithm for optimization problems. There are three evolutionary processes involved, that is mutation crossing over and selection

I am just a beginner but I have tried removing the crossing over process and there is no significant difference result from the original algorithm.

So what is the importance of crossing over in Differential Evolution Algorithm?

Cloddish answered 17/9, 2012 at 17:24 Comment(1)
If you don't use crossover may be your algorithm just explore the problem search space and doesn't exploit it. In general an evolutionary algorithm succeeds if it makes good balance between exploration and exploitation rates.Homey
H
2

If you don't use crossover may be your algorithm just explore the problem search space and doesn't exploit it. In general an evolutionary algorithm succeeds if it makes good balance between exploration and exploitation rates.

For example DE/rand/1/Either-Or is a variant of DE which eliminates crossover operator but uses effective mutation operator. According to Differential Evolution: A Survey of the State-of-the-Art, in this Algorithm, trial vectors that are pure mutants occur with a probability pF and those that are pure recombinants occur with a probability 1 − pF. This variant is shown to yield competitive results against classical DE-variants rand/1/bin and target-to-best/1/bin (Main Reference).
enter image description here

X(i,G) is the i-th target (parent) vector of Generation G, U(i,G) is it's corresponding trial vector,F is difference vector scale factor and k = 0.5*(F + 1)[in the original paper].
In this scheme crossover isn't used but mutation is effective enough to compare with original DE algorithm.

Homey answered 21/12, 2013 at 17:7 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.