-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparams.json
40 lines (38 loc) · 1.01 KB
/
params.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
{
"nbGenerations" : 500,
"archiveSize" : 50,
"archivingProbability" : 0.05,
"nbIterationsPerPolicyEvaluation" : 1,
"maxNbActionsPerEval" : 18000,
"ratioDeletedRoots" : 0.96,
"maxNbEvaluationPerPolicy" : 5,
"doValidation" : true,
"nbIterationsPerJob": 1,
"nbProgramConstant": 0,
"mutation":
{
"tpg" :
{
"forceProgramBehaviorChangeOnMutation": false,
"nbRoots" : 500,
"maxInitOutgoingEdges" : 5,
"maxOutgoingEdges" : 5,
"pEdgeDeletion" : 0.7,
"pEdgeAddition" : 0.7,
"pProgramMutation" : 0.2,
"pEdgeDestinationChange" : 0.1,
"pEdgeDestinationIsAction" : 0.5
},
"prog" :
{
"maxProgramSize" : 20,
"pDelete" : 0.5,
"pAdd" : 0.5,
"pMutate" : 1.0,
"pSwap" : 1.0,
"pConstantMutation": 0.5,
"minConstValue": -10,
"maxConstValue": 10,
}
}
}