-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.json
62 lines (52 loc) · 1.5 KB
/
config.json
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"armas_file": "dataset/armas.tsv",
"botas_file": "dataset/botas.tsv",
"cascos_file": "dataset/cascos.tsv",
"guantes_file": "dataset/guantes.tsv",
"pecheras_file": "dataset/pecheras.tsv",
"max_rows_tsv": 1000000,
"player_class": "guerrero",
"N": 20000,
"K": 5000,
"crossover": "uniform",
"mutation": "multi_uniform",
"mutation_probability": 0.2,
"limited_multigen_m": 6,
"A": 0.7,
"selector_method_1": "ranking",
"selector_method_2": "deterministic_tournament",
"selector_A_shuffle": true,
"selector_A_det_tournament_m": 3,
"selector_A_prob_tournament_th": 0.8,
"selector_A_boltzmann_t0": 10.0,
"selector_A_boltzmann_tc": 1.0,
"selector_A_boltzmann_k": 0.2,
"B": 0.7,
"selector_method_3": "elite",
"selector_method_4": "ranking",
"selector_B_det_tournament_m": 3,
"selector_B_prob_tournament_th": 0.8,
"selector_B_boltzmann_t0": 50.0,
"selector_B_boltzmann_tc": 1.0,
"selector_B_boltzmann_k": 0.15,
"implementation": "fill-all",
"stopper_time_on": true,
"stop_time_sec": 1000.0,
"stopper_generation_count_on": true,
"stop_generation_count": 200,
"stopper_diversity_on": false,
"stop_diversity_proportion": 0.05,
"stopper_acceptable_on": false,
"stop_acceptable_fitness": 30.0,
"stopper_structural_on": true,
"stop_structural_gen_count": 50,
"stop_structural_proportion": 0.95,
"stopper_content_on": true,
"stop_content_gen_count": 50,
"fitness_delta": 1e-4,
"random_seed_on": false,
"random_seed": "RANDOM_SEED",
"print_stats": false,
"plot": true,
"plot_interval_time": 0.3
}