Документ взят из кэша поисковой машины. Адрес оригинального документа : http://star.arm.ac.uk/~csj/software_store/guide/scl_gen.html
Дата изменения: Thu Aug 30 19:18:26 2007
Дата индексирования: Tue Oct 2 10:14:07 2012
Кодировка:

Поисковые слова: южная атлантическая аномалия
SCL Sfit Genetic Commands
lte-codes sterne spectrum ffit sfit grids idlines
commands scl
scl com sfit slv syn spc ga

SCL Sfit Genetic Commands


gen_par {...} : Define parameters for controlling performance of genetic algorithm

When using method genetic, several parameters are used to control the performance of the Genetic Algorithm search procedure. A short explanation of the input parameters is given:

Parameter
Meaning
Default Value
Allowed Range
generationsThe maximum number of generations the program will go through, before stopping, if the solution is not within the given tolerance.
10
population The number of parents randomly generated in the first generation, and in each subsequent generation.
50
prob_mutThe probability of mutation in the offspring.
0.02
0 - 1
prob_crossThe probability of crossover between two parents.
0.8
0 - 1
toleranceThe highest suitability which will be tolerated.
1.0
selection_methodThere are three selection methods available: tournament, rank, and fitness proportionate.
rank
rank
tournament
fitness
contestantsspecific to tournament selection. This number of parents will be selected at random and from these the two with the lowest chi-squared values will be chosen as a pair of parents.
10
substring_lengthdefines the number of characters coding each parameter. This is multiplied by the number of parameters being varied to give the total string length for each parent.
16
alphabet _sizethe number of different characters encoding the parent. For instance if this variable is given the value 2 the parent will be encoded by a string of ones and twos
3
elitisman option which, if set to 'yes', always keeps the best few members of each generation.
no
yes
no
keptOnly required if elitism is selected. Defines the number of individuals to be carried over to the next generation (if elitism is selected).
3

Example:

gen_par{
generations 10
population 50
prob_cross 0.8
prob_mut 0.02
tolerance 1.0
contestants 3
substring_length 16
alphabet_size 3
selection_method rank
elitism no
kept 2
}