fixes #21
Switched from Ant to Maven. Usage: - Install Maven 3.x - Enter directory with pom.xml - Type mvn compile - Enjoy!
This commit is contained in:
25
resources/html/EvolutionStrategies.html
Normal file
25
resources/html/EvolutionStrategies.html
Normal file
@@ -0,0 +1,25 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>Evolution Strategy - ES</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1 align="center">Evolution Strategy - ES</h1>
|
||||
<center>
|
||||
</center><br>
|
||||
An ES works on a population of real valued solutions
|
||||
by repeated use of evolutionary operators like reproduction,
|
||||
recombination and mutation.
|
||||
λ offspring individuals are generated from μ parents
|
||||
by recombination and mutation (with μ < λ).
|
||||
<br>
|
||||
After evaluating the fitness of the λ
|
||||
offspring individuals, the comma-strategy selects the μ individuals
|
||||
with the best fitness as parent population for the next generation.
|
||||
On the other hand, a plus-strategy selects the best μ individuals
|
||||
from the aggregation of parents and offspring individuals, so in this
|
||||
case the best individual is guaranteed to survive.
|
||||
In general, however, the comma-strategy is more robust and can easier
|
||||
escape from local optima, which is why it is usually the standard selection.
|
||||
<br>
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user