Configuration file description¶
The configuration file is in the format described in the Python configparser
documentation
as “a basic configuration file parser language which provides a structure similar to what you would find on Microsoft Windows INI files.”
Most settings must be explicitly enumerated in the configuration file. (This makes it less likely that library code changes will result in your project silently using different NEAT settings. There are some defaults, as noted below, and insofar as possible new configuration parameters will default to the existing behavior.)
Note that the Config
constructor also requires you to explicitly specify the types that will be used
for the NEAT simulation. This, again, is to help avoid silent changes in behavior.
The configuration file is in several sections, of which at least one is required. However, there are no requirements for ordering within these sections, or for ordering of the sections themselves.
[NEAT] section¶
The NEAT
section specifies parameters particular to the generic NEAT algorithm or the experiment
itself. This section is always required, and is handled by the Config
class itself.
- fitness_threshold
- When the fitness computed by
fitness_criterion
meets or exceeds this threshold, the evolution process will terminate, with a call to any registered reporting class’found_solution
method.
Note
The found_solution
method is not called if the maximum number of generations is reached without the above threshold being passed
(if attention is being paid to fitness for termination in the first place - see no_fitness_termination
below).
- no_fitness_termination
If this evaluates to
True
, then thefitness_criterion
andfitness_threshold
are ignored for termination; only valid if termination by a maximum number of generations passed topopulation.Population.run()
is enabled, and thefound_solution
method is called upon generation number termination. If it evaluates toFalse
, then fitness is used to determine termination. This defaults to “False”.New in version 0.92.
- pop_size
- The number of individuals in each generation.
- reset_on_extinction
- If this evaluates to
True
, when all species simultaneously become extinct due to stagnation, a new random population will be created. IfFalse
, aCompleteExtinctionException
will be thrown.
[DefaultStagnation] section¶
The DefaultStagnation
section specifies parameters for the builtin DefaultStagnation
class.
This section is only necessary if you specify this class as the stagnation implementation when
creating the Config
instance; otherwise you need to include whatever configuration (if any) is
required for your particular implementation.
Note
This is not used for calculating species fitness for apportioning reproduction (which always uses mean
).
- max_stagnation
- Species that have not shown improvement in more than this number of generations will be considered stagnant and removed. This defaults to 15.
- species_elitism
- The number of species that will be protected from stagnation; mainly intended to prevent
total extinctions caused by all species becoming stagnant before new species arise. For example,
a
species_elitism
setting of 3 will prevent the 3 species with the highest species fitness from being removed for stagnation regardless of the amount of time they have not shown improvement. This defaults to 0.
[DefaultReproduction] section¶
The DefaultReproduction
section specifies parameters for the builtin DefaultReproduction
class.
This section is only necessary if you specify this class as the reproduction implementation when
creating the Config
instance; otherwise you need to include whatever configuration (if any) is
required for your particular implementation.
- elitism
- The number of most-fit individuals in each species that will be preserved as-is from one generation to the next. This defaults to 0.
- survival_threshold
- The fraction for each species allowed to reproduce each generation. This defaults to 0.2.
- min_species_size
- The minimum number of genomes per species after reproduction. This defaults to 2, which is also the minimum.
- fitness_min_divisor
- The minimum divisor for determining relative fitnesses in
reproduction.DefaultReproduction.reproduce()
. This defaults to 1.0, for backward compatibility. Must be set to at least 0.0, for whichNORM_EPSILON
is substituted, and if above 0.0 but belowsys.float_info.epsilon
, is set to the latter.
[DefaultGenome] section¶
The DefaultGenome
section specifies parameters for the builtin DefaultGenome
class.
This section is only necessary if you specify this class as the genome implementation when
creating the Config
instance; otherwise you need to include whatever configuration (if any) is
required for your particular implementation.
- activation_default
- The default activation function attribute
assigned
to new nodes. If none is given, or “random” is specified, one of the activation_options will be chosen at random.
- activation_mutate_rate
- The probability that mutation will replace the node’s activation function with a
randomly-determined
member of theactivation_options
. Valid values are in [0.0, 1.0].
- activation_options
- A space-separated list of the activation functions that may be used by nodes. This defaults to sigmoid. The built-in available functions can be found in Overview of builtin activation functions; more can be added as described in Customizing Behavior.
- aggregation_default
- The default aggregation function attribute
assigned
to new nodes. If none is given, or “random” is specified, one of the aggregation_options will be chosen at random.
- aggregation_mutate_rate
- The probability that mutation will replace the node’s aggregation function with a
randomly-determined
member of theaggregation_options
. Valid values are in [0.0, 1.0].
- aggregation_options
A space-separated list of the aggregation functions that may be used by nodes. This defaults to “sum”. The available functions (defined in
aggregations
) are:sum
,product
,min
,max
,mean
,median
, andmaxabs
(which returns the input value with the greatest absolute value; the returned value may be positive or negative). New aggregation functions can be defined similarly to new activation functions. (Note that the function needs to take alist
or otheriterable
; thereduce
function, as inaggregations
, may be of use in this.)Changed in version 0.92: Moved out of
genome
intoaggregations
; maxabs, mean, and median added; method for defining new aggregation functions added.
- bias_init_stdev
- The standard deviation of the normal/gaussian distribution, if it is used to select bias values for new nodes.
- bias_init_type
If set to
gaussian
ornormal
, then the initialization is to a normal/gaussian distribution. If set touniform
, a uniform distribution from \(\max(bias\_min\_value, (bias\_init\_mean-(bias\_init\_stdev*2)))\) to \(\min(bias\_max\_value, (bias\_init\_mean+(bias\_init\_stdev*2)))\). (Note that the standard deviation of a uniform distribution is not range/0.25, as implied by this, but the range divided by a bit over 0.288 (the square root of 12); however, this approximation makes setting the range much easier.) This defaults to “gaussian”.New in version 0.92.
- bias_max_value
- The maximum allowed bias value. Biases above this value will be
clamped
to this value.
- bias_min_value
- The minimum allowed bias value. Biases below this value will be
clamped
to this value.
- bias_mutate_power
- The standard deviation of the zero-centered normal/gaussian distribution from which a bias value mutation is drawn.
- bias_mutate_rate
- The probability that mutation will change the bias of a node by adding a random value.
- compatibility_threshold
- Individuals whose genomic distance is less than this threshold are considered to be in the same species.
- compatibility_disjoint_coefficient
- The coefficient for the disjoint and excess gene counts’ contribution to the genomic distance.
- compatibility_weight_coefficient
- The coefficient for each weight, bias, or response multiplier difference’s contribution to the genomic distance (for homologous nodes or connections). This is also used as the value to add for differences in activation functions, aggregation functions, or enabled/disabled status.
Note
It is currently possible for two homologous nodes or connections to have a higher contribution to the genomic distance than a disjoint or excess node or connection, depending on their attributes and the settings of the above parameters.
- conn_add_prob
- The probability that mutation will add a connection between existing nodes. Valid values are in [0.0, 1.0].
- conn_delete_prob
- The probability that mutation will delete an existing connection. Valid values are in [0.0, 1.0].
Note
“Newly created connections” include ones in newly-created genomes, if those have initial connections (from the setting of the initial_connection variable).
- enabled_rate_to_false_add
Adds to the
enabled_mutate_rate
if the connection is currently enabled.
- enabled_rate_to_true_add
Adds to the
enabled_mutate_rate
if the connection is currently not enabled.New in version 0.92:
enabled_rate_to_false_add
andenabled_rate_to_true_add
- feed_forward
- If this evaluates to
True
, generated networks will not be allowed to have recurrent connections (they will be feedforward). Otherwise they may be (but are not forced to be) recurrent.
- initial_connection
- Specifies the initial connectivity of newly-created genomes. (Note the effects on settings other than
unconnected
of the enabled_default parameter.) There are seven allowed values:unconnected
- No connections are initially present. This is the default.fs_neat_nohidden
- One randomly-chosen input node has one connection to each output node. (This is one version of the FS-NEAT scheme; “FS” stands for “Feature Selection”.)fs_neat_hidden
- One randomly-chosen input node has one connection to each hidden and output node. (This is another version of the FS-NEAT scheme. If there are no hidden nodes, it is the same asfs_neat_nohidden
.)full_nodirect
- Each input node is connected to all hidden nodes, if there are any, and each hidden node is connected to all output nodes; otherwise, each input node is connected to all output nodes. Genomes with feed_forward set toFalse
will also have recurrent (loopback, in this case) connections from each hidden or output node to itself.full_direct
- Each input node is connected to all hidden and output nodes, and each hidden node is connected to all output nodes. Genomes with feed_forward set toFalse
will also have recurrent (loopback, in this case) connections from each hidden or output node to itself.partial_nodirect #
- As forfull_nodirect
, but each connection has a probability of being present determined by the number (valid values are in [0.0, 1.0]).partial_direct #
- as forfull_direct
, but each connection has a probability of being present determined by the number (valid values are in [0.0, 1.0]).
Changed in version 0.92: fs_neat split into fs_neat_nohidden and fs_neat_hidden; full, partial split into full_nodirect, full_direct, partial_nodirect, partial_direct
- node_delete_prob
- The probability that mutation will delete an existing node (and all connections to it). Valid values are in [0.0, 1.0].
- num_hidden
- The number of hidden nodes to add to each genome in the initial population.
- num_inputs
- The number of input nodes, through which the network receives inputs.
- num_outputs
- The number of output nodes, to which the network delivers outputs.
- response_init_stdev
- The standard deviation of the normal/gaussian distribution, if it is used to select response multipliers for new nodes.
- response_init_type
If set to
gaussian
ornormal
, then the initialization is to a normal/gaussian distribution. If set touniform
, a uniform distribution from \(\max(response\_min\_value, (response\_init\_mean-(response\_init\_stdev*2)))\) to \(\min(response\_max\_value, (response\_init\_mean+(response\_init\_stdev*2)))\). (Note that the standard deviation of a uniform distribution is not range/0.25, as implied by this, but the range divided by a bit over 0.288 (the square root of 12); however, this approximation makes setting the range much easier.) This defaults to “gaussian”.New in version 0.92.
- response_max_value
- The maximum allowed response multiplier. Response multipliers above this value will be
clamped
to this value.
- response_min_value
- The minimum allowed response multiplier. Response multipliers below this value will be
clamped
to this value.
- response_mutate_power
- The standard deviation of the zero-centered normal/gaussian distribution from which a response multiplier mutation is drawn.
- response_mutate_rate
- The probability that mutation will change the response multiplier of a node by adding a random value.
- single_structural_mutation
If this evaluates to
True
, only one structural mutation (the addition or removal of a node or connection) will be allowed per genome per generation. (If the probabilities for conn_add_prob, conn_delete_prob, node_add_prob, and node_delete_prob add up to over 1, the chances of each are proportional to the appropriate configuration value.) This defaults to “False”.New in version 0.92.
- structural_mutation_surer
If this evaluates to
True
, then an attempt to add a node to a genome lacking connections will result in adding a connection instead; furthermore, if an attempt to add a connection tries to add a connection that already exists, that connection will be enabled. If this is set todefault
, then it acts as if it had the same value assingle_structural_mutation
(above). This defaults to “default”.New in version 0.92.
- weight_init_mean
- The mean of the normal/gaussian distribution used to
select
weight attribute values for new connections.
- weight_init_stdev
- The standard deviation of the normal/gaussian distribution used to select weight values for new connections.
- weight_init_type
If set to
gaussian
ornormal
, then the initialization is to a normal/gaussian distribution. If set touniform
, a uniform distribution from \(\max(weight\_min\_value, (weight\_init\_mean-(weight\_init\_stdev*2)))\) to \(\min(weight\_max\_value, (weight\_init\_mean+(weight\_init\_stdev*2)))\). (Note that the standard deviation of a uniform distribution is not range/0.25, as implied by this, but the range divided by a bit over 0.288 (the square root of 12); however, this approximation makes setting the range much easier.) This defaults to “gaussian”.New in version 0.92.
- weight_max_value
- The maximum allowed weight value. Weights above this value will be
clamped
to this value.
- weight_min_value
- The minimum allowed weight value. Weights below this value will be
clamped
to this value.
- weight_mutate_power
- The standard deviation of the zero-centered normal/gaussian distribution from which a weight value mutation is drawn.
- weight_mutate_rate
- The probability that mutation will change the weight of a connection by adding a random value.