Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OKBJavaConnector/ECJClient/src/ec/de/de.params @ 6152

Last change on this file since 6152 was 6152, checked in by bfarka, 13 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
5parent.0 = ../simple/simple.params
6
7eval = ec.de.DEEvaluator
8breed = 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:
15breed.f = 0.1
16
17# Gene-independent probability of crossover, used only by
18# DEBreeder and Best1BinDEBreeder
19breed.cr = 0.5
20
21# Scaling factor for noise on F, used only by Best1BinDEBreeder
22breed.f-noise = 0.001
23
24# Probability of picking the "classic" algorithm versus the alternate,
25# only ud by Rand1EitherOrDEBreeder
26breed.pf = 0.5
27
Note: See TracBrowser for help on using the repository browser.