Last change
on this file since 9449 was
6152,
checked in by bfarka, 14 years ago
|
added ecj and custom statistics to communicate with the okb services #1441
|
File size:
828 bytes
|
Line | |
---|
1 | # Copyright 2006 by Sean Luke and George Mason University |
---|
2 | # Licensed under the Academic Free License version 3.0 |
---|
3 | # See the file "LICENSE" for more information |
---|
4 | |
---|
5 | parent.0 = ../simple/simple.params |
---|
6 | |
---|
7 | eval = ec.de.DEEvaluator |
---|
8 | breed = ec.de.DEBreeder |
---|
9 | # Other breed choices: ec.de.Best1BinDEBreeder, ec.de.Rand1EitherOrDEBreeder |
---|
10 | |
---|
11 | # DE has certain parameters you must set. Note that these parameters |
---|
12 | # are fairly sensitive to the problem at hand. |
---|
13 | |
---|
14 | # Scaling factor for mutation, used by all breeders: |
---|
15 | breed.f = 0.1 |
---|
16 | |
---|
17 | # Gene-independent probability of crossover, used only by |
---|
18 | # DEBreeder and Best1BinDEBreeder |
---|
19 | breed.cr = 0.5 |
---|
20 | |
---|
21 | # Scaling factor for noise on F, used only by Best1BinDEBreeder |
---|
22 | breed.f-noise = 0.001 |
---|
23 | |
---|
24 | # Probability of picking the "classic" algorithm versus the alternate, |
---|
25 | # only ud by Rand1EitherOrDEBreeder |
---|
26 | breed.pf = 0.5 |
---|
27 | |
---|
Note: See
TracBrowser
for help on using the repository browser.