-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlab_config
48 lines (43 loc) · 1.17 KB
/
lab_config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#--- parameters for the labirinto ---#
[Types]
stagnation_type = DefaultStagnation
reproduction_type = DefaultReproduction
[phenotype]
input_nodes = 4
hidden_nodes = 0
output_nodes = 4
initial_connection = unconnected
max_weight = 5
min_weight = -5
feedforward = 0
activation_functions = sigmoid
#activation_functions = tanh
weight_stdev = 2.0
[genetic]
pop_size = 300
max_fitness_threshold = 99999
prob_add_conn = 0.10
prob_add_node = 0.05
prob_delete_conn = 0.01
prob_delete_node = 0.01
prob_mutate_bias = 0.2
bias_mutation_power = 0.5
prob_mutate_response = 0.2
prob_mutate_weight = 0.8
weight_mutation_power = 1.8
response_mutation_power = 0.1
prob_replace_weight = 0.0245
prob_mutate_activation = 0.0
prob_toggle_link = 0.0138
reset_on_extinction = 1
[genotype compatibility]
compatibility_threshold = 7.0
excess_coefficient = 2.0
disjoint_coefficient = 2.0
weight_coefficient = 0.4
[DefaultStagnation]
species_fitness_func = mean
max_stagnation = 15
[DefaultReproduction]
elitism = 1
survival_threshold = 0.2