forked from ITMO-NSS-team/EPDE
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault_parameters_multi_objective.json
More file actions
108 lines (103 loc) · 2.5 KB
/
Copy pathdefault_parameters_multi_objective.json
File metadata and controls
108 lines (103 loc) · 2.5 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"MOEADDSelection" : {
"delta" : 0.9,
"parents_fraction" : 0.2
},
"PopulationUpdater" : {
"PBI_penalty" : 5.0
},
"SortingBasedNeighborSelector" : {
"number_of_neighbors" : 4
},
"ParetoLevelUpdater" : {
"mutation_attempt_limit" : 3,
"offspring_attempt_limit" : 3
},
"InitialParetoLevelSorting" : {
"uniqueness_attempt_limit" : 100
},
"SolverFreeFitness" : {
"penalty_coeff" : 0.2
},
"SolverBasedFitness" : {
"penalty_coeff" : 0.2,
"pinn_loss_mult" : 1e4,
"error_metric": "rmse",
"deepxde_config": {
"net": [50, 50, 50],
"activation": "tanh",
"optimizer": "adam",
"lr": 1e-3,
"num_domain": 1000,
"num_boundary": 200,
"num_initial": 200,
"iterations": 1000,
"epochs": 1000,
"verbose": false
}
},
"_comment_legacy_aliases": "Param-registry aliases kept ONLY so the functional test harness (tests/functional) can fetch params by the historical operator names; the production search builds the new SolverFreeFitness / SolverBasedFitness hosts.",
"DiscrepancyBasedFitnessWithCV" : {
"penalty_coeff" : 0.2
},
"PIC" : {
"penalty_coeff" : 0.2,
"pinn_loss_mult" : 1e4
},
"DeepXDEBasedFitness": {
"deepxde_config": {
"net": [95, 100, 95],
"activation": "tanh",
"optimizer": "adam",
"lr": 1e-3,
"num_domain": 1000,
"num_boundary": 200,
"num_initial": 200,
"epochs": 2000
},
"penalty_coeff": 0.2,
"error_metric": "rmse"
},
"ParetoLevelsCrossover" : {
},
"ChromosomeCrossover" : {
"equation_exchange_prob" : 0.1
},
"MetaparamerCrossover" : {
"metaparam_proportion" : 0.05
},
"EquationCrossover" : {
"crossover_probability" : 1
},
"EquationExchangeCrossover" : {
},
"TermCrossover" : {
"crossover_probability" : 0.3
},
"TermParamCrossover" : {
"term_param_proportion" : 0.4
},
"SystemMutation" : {
"indiv_mutation_prob" : 1
},
"EquationMutation" : {
"r_mutation" : 0.6,
"n_added_terms" : 12,
"term_addition_prob" : 0.5
},
"MetaparameterMutation" : {
"mean" : 0.0,
"std" : 1.0
},
"TermMutation" : {
},
"TermParameterMutation" : {
"r_param_mutation" : 0.2,
"multiplier" : 0.1,
"strict_restrictions" : 1
},
"LinRegCoeffCalc" : {
},
"LASSOBasedSparsity" : {
}
}