-
Notifications
You must be signed in to change notification settings - Fork 32
/
Params.json
executable file
·92 lines (86 loc) · 2.35 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
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
{
"prerun-iterations": 1000,
"total-iterations": 150000,
"timeout-s": 60,
"iters-without-improvement-max": 5000,
"iters-without-improvement-alarm": 1000,
"iterations-without-syncing-threads": 1,
"prob-return-to-best-known": 0.0,
"acceptance-criterion-possible-values": [
"Hill climbing",
"Simulated annealing",
"Threshold acceptance",
"Great deluge",
"Record-to-record travel",
"Late acceptance hill climbing",
"Non-Linear Great Deluge",
"Worse accept",
"Conservative worse accept",
"Discreet worse accept",
"Random walk",
"Custom"
],
"acceptance-criterion": "Simulated annealing",
"acceptance-params-base-possible-values": [
"time", "iterations"
],
"acceptance-params-base": "time",
"scores": {
"accepted": 2.0,
"improved": 4.0,
"global-best": 10.0,
"decay": 0.99
},
"parameter-tuning-file": "ParTuningResults.txt",
"results-log-basename": "Summary",
"acceptance": {
"simulated-annealing": {
"init-ratio-50p": 0.9,
"end-ratio-50p": 0.01,
"end-ratio-50p-refers-to-initial": false,
"temperature-decrease-is-linear": false,
"reheating": false,
"reheating-coefficient": 5.0,
"reheating-times": 2,
"magic-number-exponent": 1.0
},
"threshold-acceptance": {
"start-threshold": 0.05,
"end-threshold": 0.001,
"threshold-decrease-is-linear": true
},
"great-deluge": {
"initial-water-level-ratio": 1.1,
"water-level-decrease-pct": 0.01
},
"record-to-record": {
"start-deviation": 0.1,
"end-deviation": 0.01,
"deviation-decrease-is-linear": true
},
"late-acceptance-hill-climbing": {
"list-size": 5000,
"allow-non-worsening": true
},
"non-linear-great-deluge": {
"initial-water-level-ratio": 1.0,
"gap-to-increase-water-level": 0.01,
"water-level-increase-pct": 0.05,
"water-level-decrease-exp-factor": 0.01
},
"worse-accept": {
"start-probability": 0.1,
"end-probability": 0.01,
"probability-decrease-is-linear": false
},
"conservative-worse-accept": {
"start-probability": 0.1,
"end-probability": 0.01,
"probability-decrease-is-linear": false
},
"discreet-worse-accept": {
"consecutive-rejects-for-100p": 5,
"probability-increase-is-linear": true
}
}
}