-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconfigs.ini
46 lines (35 loc) · 1.36 KB
/
configs.ini
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
# All inputs and constants are automatically also set to terminals as
# they have 0 arity. Variables are read from the fitness case file
[arities]
+: 2
*: 2
/: 2
-: 2
# Specify the constants you would like to employ in your evaluation
# the program will use 0 to the number you specified
[constants]
values: 0, 1
[Search parameters]
# Specify the number of individuals(population) make sure the
# population size is GREATER than the number of inputs
population_size: 100
# Specify the max depth of the tree
max_depth: 5
# Specify the number of best individuals that are preserved between generations
elite_size: 2
# Specify the number of generations you would like to generate
generations: 20
# Specify the number of individual solutions that are compared when
# determining which solutions are inserted into next generation of the
# search loop
tournament_size: 3
# Random seed. Enables a user to replicate experiment
seed: 1
# Probability of individual solutions to be varied by the crossover operator
crossover_probability: 0.8
# Probability of individual solutions to be varied by the mutation operator
mutation_probability: 0.2
# Name of file that has data(inputs and outputs) stored in it.
fitness_cases: fitness_cases.csv
# Ratio of fitness cases used for training individual solutions
test_train_split: 0.7