-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathLGPConfig.xml
More file actions
48 lines (42 loc) · 1.73 KB
/
LGPConfig.xml
File metadata and controls
48 lines (42 loc) · 1.73 KB
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
<?xml version="1.0" ?>
<configuration>
<parameters>
<param name="NumRegisters" value="6" />
<param name="PopulationSize" value="1000" />
<param name="Epsilon" value="0.000000001" />
<param name="MaxGenerations" value="1000" />
<param name="Maximization" value="false" />
<param name="CrossoverRate" value="0.1" />
<param name="MacroMutationRate" value="0.75" />
<param name="MicroMutationRate" value="0.25" />
</parameters>
<log_parameters>
<param name="PopLogInterval" value="50" />
<param name="PopLogFilePath" value="pop_log" />
<param name="StatsLogFilePath" value="stats_log" />
<param name="RunLogFilePath" value="run_log" />
</log_parameters>
<micro_mutation>
<mutation_type_probability register_mutation="0.5" operator_mutation="0.5" constant_mutation="0.5" />
<constant_mutation standard_deviation="1" />
</micro_mutation>
<constant_reg>
<constant value="1" weight="1" />
<constant value="2" weight="1" />
<constant value="3" weight="1" />
<constant value="4" weight="1" />
<constant value="5" weight="1" />
<constant value="6" weight="1" />
<constant value="7" weight="1" />
<constant value="8" weight="1" />
<constant value="9" weight="1" />
</constant_reg>
<lgp_scripts>
<script name="LGPCrossoverInstructionFactory" src="LGPCrossoverInstructionFactory.xml" />
<script name="LGPMutationInstructionFactory" src="LGPMutationInstructionFactory.xml" />
<script name="LGPPopInitInstructionFactory" src="LGPPopInitInstructionFactory.xml" />
<script name="LGPRegInitInstructionFactory" src="LGPRegInitInstructionFactory.xml" />
<script name="LGPReproductionSelectionInstructionFactory" src="LGPReproductionSelectionInstructionFactory.xml" />
<script name="LGPSurvivalInstructionFactory" src="LGPSurvivalInstructionFactory.xml" />
</lgp_scripts>
</configuration>