-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.json
65 lines (61 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
63
64
65
{
"defaultCSV":"default.csv",
"populationSize":4000,
"generationCount":75,
"survivalRatio":0.05,
"targetComplexity":10,
"parsimonyRatio":0.65,
"accuracyCompletion":0.02,
"useCCMScoring":false,
"weighedMutation":true,
"weightChance":1.5,
"mutationCount":2,
"decimalPrecision":2,
"minConstant":0.1,
"maxConstant":100.0,
"minRMSClamp":-50.0,
"maxRMSClamp":50.0,
"useRMSClamp":true,
"constantChance":50.0,
"changeChance":60.0,
"operatorChance":50.0,
"mutationChance":50.0,
"maxDuplicateRemoval":1,
"populationCopyCount":5,
"useSqrtRMS":false,
"precalculatedTree":"",
"verboseLogging":true,
"singleThreaded":false,
"denySimplifyOperator":"",
"useVariableDescriptors":false,
"variableDescriptors":[],
"fitnessAlgo":{
"enabled":true,
"populationSize":50,
"changeChance":75.0,
"sampleRatio":0.5,
"survivalRatio":0.1,
"iterationCount":10
},
"visualEvo":{
"enabled":true,
"closeOnFinish":false,
"clearGraphCount":5,
"xresolution":2048,
"yresolution":2048,
"xscale":256.0,
"yscale":64.0,
"drawVariableIndex":0
},
"operatorFunctions":[
"inv", "neg", "add", "sub",
"mul", "div", "pow"
],
"defaultComplexity":1,
"complexityWeights":{
"pow":[
["constant", "operator", 12], ["operator", "constant", 2],
["constant", "constant", 2], ["operator", "operator", 12]
]
}
}