mg-pso-gui 0.1.13__py3-none-any.whl → 0.2.75__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- {mg_pso_gui-0.1.13.dist-info → mg_pso_gui-0.2.75.dist-info}/METADATA +10 -11
- mg_pso_gui-0.2.75.dist-info/RECORD +76 -0
- {mg_pso_gui-0.1.13.dist-info → mg_pso_gui-0.2.75.dist-info}/WHEEL +1 -1
- mgpsogui/gui/General/ParameterView.py +110 -0
- mgpsogui/gui/General/__init__.py +0 -0
- mgpsogui/gui/HomePage.py +565 -513
- mgpsogui/gui/OptionManager.py +333 -145
- mgpsogui/gui/OptionManager_backup.py +443 -0
- mgpsogui/gui/PlatformTab/PlatformTab.py +15 -6
- mgpsogui/gui/RunTab/OptimalParameterView.py +47 -0
- mgpsogui/gui/RunTab/RunTab.py +89 -35
- mgpsogui/gui/SetupTab/BoundsEditorWindow.py +1 -1
- mgpsogui/gui/SetupTab/BoundsList.py +97 -34
- mgpsogui/gui/SetupTab/CustomFunctionEditorWindow.py +74 -0
- mgpsogui/gui/SetupTab/CustomFunctionMetrics.py +156 -0
- mgpsogui/gui/SetupTab/FunctionsList.py +60 -6
- mgpsogui/gui/SetupTab/{StaticParameterView.py → ListEditor.py} +27 -16
- mgpsogui/gui/SetupTab/ListParametersView.py +7 -6
- mgpsogui/gui/SetupTab/{CalibrationParametersView.py → OverrideParameterMetrics.py} +35 -9
- mgpsogui/gui/SetupTab/OverrideParameterWindow.py +40 -0
- mgpsogui/gui/SetupTab/SetupTab.py +31 -11
- mgpsogui/gui/SetupTab/StepView.py +93 -22
- mgpsogui/gui/VisualizeTab/MatrixEditor.py +68 -0
- mgpsogui/gui/VisualizeTab/SideBar.py +399 -0
- mgpsogui/gui/VisualizeTab/VisualizeTab.py +76 -11
- mgpsogui/gui/defaults/__init__.py +0 -0
- mgpsogui/gui/defaults/optimization.json +176 -0
- mgpsogui/gui/defaults/sampling.json +111 -0
- mgpsogui/gui/defaults/sensitivity.json +20 -0
- mgpsogui/gui/images/plus.png +0 -0
- mgpsogui/gui/images/test.png +0 -0
- mgpsogui/util/GraphGenerator.py +747 -42
- mgpsogui/util/PSORunner.py +608 -116
- mgpsogui/util/debug.py +559 -0
- mgpsogui/util/helpers.py +95 -0
- mgpsogui/util/recosu/__init__.py +2 -1
- mgpsogui/util/recosu/pso/csip_access.py +2 -35
- mgpsogui/util/recosu/pso/pso.py +55 -59
- mgpsogui/util/recosu/sampling/__init__.py +16 -0
- mgpsogui/util/recosu/sampling/halton/__init__.py +0 -0
- mgpsogui/util/recosu/sampling/halton/halton.py +45 -0
- mgpsogui/util/recosu/sampling/halton/prime.py +82 -0
- mgpsogui/util/recosu/sampling/random/__init__.py +0 -0
- mgpsogui/util/recosu/sampling/random/random_sampler.py +34 -0
- mgpsogui/util/recosu/sampling/sample_trace_writer.py +47 -0
- mgpsogui/util/recosu/sampling/sampler_task.py +75 -0
- mgpsogui/util/recosu/sampling/sampling.py +99 -0
- mgpsogui/util/sampler_test_driver.py +129 -0
- mg_pso_gui-0.1.13.dist-info/RECORD +0 -50
- mgpsogui/gui/images/IGOW 4 Logo.png +0 -0
- {mg_pso_gui-0.1.13.dist-info → mg_pso_gui-0.2.75.dist-info}/entry_points.txt +0 -0
- {mg_pso_gui-0.1.13.dist-info → mg_pso_gui-0.2.75.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,176 @@
|
|
1
|
+
{
|
2
|
+
"model_parameters": [
|
3
|
+
{
|
4
|
+
"name": "startTime",
|
5
|
+
"value": "2002-01-01",
|
6
|
+
"type": "date",
|
7
|
+
"destination": "args"
|
8
|
+
},
|
9
|
+
{
|
10
|
+
"name": "endTime",
|
11
|
+
"value": "2006-12-31",
|
12
|
+
"type": "date",
|
13
|
+
"destination": "args"
|
14
|
+
},
|
15
|
+
{
|
16
|
+
"name": "dataStartTime",
|
17
|
+
"value": "2002-01-01",
|
18
|
+
"type": "date",
|
19
|
+
"destination": "args"
|
20
|
+
},
|
21
|
+
{
|
22
|
+
"name": "dataEndTime",
|
23
|
+
"value": "2006-12-31",
|
24
|
+
"type": "date",
|
25
|
+
"destination": "args"
|
26
|
+
},
|
27
|
+
{
|
28
|
+
"name": "cal_startTime",
|
29
|
+
"value": "2003-01-01",
|
30
|
+
"type": "date",
|
31
|
+
"destination": "args"
|
32
|
+
},
|
33
|
+
{
|
34
|
+
"name": "cal_endTime",
|
35
|
+
"value": "2006-12-31",
|
36
|
+
"type": "date",
|
37
|
+
"destination": "args"
|
38
|
+
},
|
39
|
+
{
|
40
|
+
"name": "parallelismThreads",
|
41
|
+
"value": "2",
|
42
|
+
"type": "integer",
|
43
|
+
"destination": "args"
|
44
|
+
},
|
45
|
+
{
|
46
|
+
"name": "flagLoadState",
|
47
|
+
"value": "True",
|
48
|
+
"type": "boolean",
|
49
|
+
"destination": "args"
|
50
|
+
},
|
51
|
+
{
|
52
|
+
"name": "payload",
|
53
|
+
"value": "False",
|
54
|
+
"type": "boolean",
|
55
|
+
"destination": "args"
|
56
|
+
},
|
57
|
+
{
|
58
|
+
"name": "project",
|
59
|
+
"value": "SFIR3",
|
60
|
+
"type": "string",
|
61
|
+
"destination": "args"
|
62
|
+
}
|
63
|
+
],
|
64
|
+
"hyperparameters": [
|
65
|
+
{
|
66
|
+
"name": "min_rounds",
|
67
|
+
"value": "1",
|
68
|
+
"type": "integer",
|
69
|
+
"destination": "kwargs"
|
70
|
+
},
|
71
|
+
{
|
72
|
+
"name": "max_rounds",
|
73
|
+
"value": "2",
|
74
|
+
"type": "integer",
|
75
|
+
"destination": "kwargs"
|
76
|
+
},
|
77
|
+
{
|
78
|
+
"name": "n_particles",
|
79
|
+
"value": "10",
|
80
|
+
"type": "integer",
|
81
|
+
"destination": "kwargs"
|
82
|
+
},
|
83
|
+
{
|
84
|
+
"name": "iters",
|
85
|
+
"value": "20",
|
86
|
+
"type": "integer",
|
87
|
+
"destination": "kwargs"
|
88
|
+
},
|
89
|
+
{
|
90
|
+
"name": "n_threads",
|
91
|
+
"value": "10",
|
92
|
+
"type": "integer",
|
93
|
+
"destination": "kwargs"
|
94
|
+
},
|
95
|
+
{
|
96
|
+
"name": "options_c1",
|
97
|
+
"value": "2",
|
98
|
+
"type": "float",
|
99
|
+
"destination": "options"
|
100
|
+
},
|
101
|
+
{
|
102
|
+
"name": "options_c2",
|
103
|
+
"value": "2",
|
104
|
+
"type": "float",
|
105
|
+
"destination": "options"
|
106
|
+
},
|
107
|
+
{
|
108
|
+
"name": "options_w",
|
109
|
+
"value": "0.8",
|
110
|
+
"type": "float",
|
111
|
+
"destination": "options"
|
112
|
+
},
|
113
|
+
{
|
114
|
+
"name": "strategy_w",
|
115
|
+
"value": "adaptive",
|
116
|
+
"type": "string",
|
117
|
+
"destination": "oh_strategy"
|
118
|
+
},
|
119
|
+
{
|
120
|
+
"name": "strategy_c1",
|
121
|
+
"value": "adaptive",
|
122
|
+
"type": "string",
|
123
|
+
"destination": "oh_strategy"
|
124
|
+
},
|
125
|
+
{
|
126
|
+
"name": "strategy_c2",
|
127
|
+
"value": "adaptive",
|
128
|
+
"type": "string",
|
129
|
+
"destination": "oh_strategy"
|
130
|
+
}
|
131
|
+
],
|
132
|
+
"service_parameters": [
|
133
|
+
{
|
134
|
+
"name": "service_timeout",
|
135
|
+
"value": "400",
|
136
|
+
"type": "integer",
|
137
|
+
"destination": "conf"
|
138
|
+
},
|
139
|
+
{
|
140
|
+
"name": "http_retry",
|
141
|
+
"value": "5",
|
142
|
+
"type": "integer",
|
143
|
+
"destination": "conf"
|
144
|
+
},
|
145
|
+
{
|
146
|
+
"name": "allow_redirects",
|
147
|
+
"value": "True",
|
148
|
+
"type": "boolean",
|
149
|
+
"destination": "conf"
|
150
|
+
},
|
151
|
+
{
|
152
|
+
"name": "async_call",
|
153
|
+
"value": "False",
|
154
|
+
"type": "boolean",
|
155
|
+
"destination": "conf"
|
156
|
+
},
|
157
|
+
{
|
158
|
+
"name": "conn_timeout",
|
159
|
+
"value": "10",
|
160
|
+
"type": "integer",
|
161
|
+
"destination": "conf"
|
162
|
+
},
|
163
|
+
{
|
164
|
+
"name": "read_timeout",
|
165
|
+
"value": "400",
|
166
|
+
"type": "integer",
|
167
|
+
"destination": "conf"
|
168
|
+
},
|
169
|
+
{
|
170
|
+
"name": "particles_fail",
|
171
|
+
"value": "5",
|
172
|
+
"type": "integer",
|
173
|
+
"destination": "conf"
|
174
|
+
}
|
175
|
+
]
|
176
|
+
}
|
@@ -0,0 +1,111 @@
|
|
1
|
+
{
|
2
|
+
"model_parameters": [
|
3
|
+
{
|
4
|
+
"name": "startTime",
|
5
|
+
"value": "2011-06-08",
|
6
|
+
"type": "date",
|
7
|
+
"destination": "args"
|
8
|
+
},
|
9
|
+
{
|
10
|
+
"name": "endTime",
|
11
|
+
"value": "2011-07-13",
|
12
|
+
"type": "date",
|
13
|
+
"destination": "args"
|
14
|
+
},
|
15
|
+
{
|
16
|
+
"name": "dataStartTime",
|
17
|
+
"value": "2011-06-08",
|
18
|
+
"type": "date",
|
19
|
+
"destination": "args"
|
20
|
+
},
|
21
|
+
{
|
22
|
+
"name": "dataEndTime",
|
23
|
+
"value": "2011-07-13",
|
24
|
+
"type": "date",
|
25
|
+
"destination": "args"
|
26
|
+
},
|
27
|
+
{
|
28
|
+
"name": "parallelismThreads",
|
29
|
+
"value": "8",
|
30
|
+
"type": "integer",
|
31
|
+
"destination": "args"
|
32
|
+
},
|
33
|
+
{
|
34
|
+
"name": "flagLoadState",
|
35
|
+
"value": "True",
|
36
|
+
"type": "boolean",
|
37
|
+
"destination": "args"
|
38
|
+
},
|
39
|
+
{
|
40
|
+
"name": "payload",
|
41
|
+
"value": "False",
|
42
|
+
"type": "boolean",
|
43
|
+
"destination": "args"
|
44
|
+
},
|
45
|
+
{
|
46
|
+
"name": "project",
|
47
|
+
"value": "drake58hru-5min",
|
48
|
+
"type": "string",
|
49
|
+
"destination": "args"
|
50
|
+
},
|
51
|
+
{
|
52
|
+
"name": "offset",
|
53
|
+
"value": "5",
|
54
|
+
"type": "integer",
|
55
|
+
"destination": "kwargs"
|
56
|
+
},
|
57
|
+
{
|
58
|
+
"name": "count",
|
59
|
+
"value": "10",
|
60
|
+
"type": "integer",
|
61
|
+
"destination": "kwargs"
|
62
|
+
},
|
63
|
+
{
|
64
|
+
"name": "num_threads",
|
65
|
+
"value": "2",
|
66
|
+
"type": "integer",
|
67
|
+
"destination": "kwargs"
|
68
|
+
}
|
69
|
+
],
|
70
|
+
"hyperparameters": [
|
71
|
+
|
72
|
+
],
|
73
|
+
"service_parameters": [
|
74
|
+
{
|
75
|
+
"name": "service_timeout",
|
76
|
+
"value": "400",
|
77
|
+
"type": "integer",
|
78
|
+
"destination": "conf"
|
79
|
+
},
|
80
|
+
{
|
81
|
+
"name": "http_retry",
|
82
|
+
"value": "5",
|
83
|
+
"type": "integer",
|
84
|
+
"destination": "conf"
|
85
|
+
},
|
86
|
+
{
|
87
|
+
"name": "allow_redirects",
|
88
|
+
"value": "True",
|
89
|
+
"type": "boolean",
|
90
|
+
"destination": "conf"
|
91
|
+
},
|
92
|
+
{
|
93
|
+
"name": "async_call",
|
94
|
+
"value": "False",
|
95
|
+
"type": "boolean",
|
96
|
+
"destination": "conf"
|
97
|
+
},
|
98
|
+
{
|
99
|
+
"name": "conn_timeout",
|
100
|
+
"value": "10",
|
101
|
+
"type": "integer",
|
102
|
+
"destination": "conf"
|
103
|
+
},
|
104
|
+
{
|
105
|
+
"name": "read_timeout",
|
106
|
+
"value": "400",
|
107
|
+
"type": "integer",
|
108
|
+
"destination": "conf"
|
109
|
+
}
|
110
|
+
]
|
111
|
+
}
|
@@ -0,0 +1,20 @@
|
|
1
|
+
{
|
2
|
+
"model_parameters": [
|
3
|
+
],
|
4
|
+
"hyperparameters": [
|
5
|
+
],
|
6
|
+
"service_parameters": [
|
7
|
+
{
|
8
|
+
"name": "service_timeout",
|
9
|
+
"value": "60",
|
10
|
+
"type": "integer",
|
11
|
+
"destination": "conf"
|
12
|
+
},
|
13
|
+
{
|
14
|
+
"name": "mode",
|
15
|
+
"value": "async",
|
16
|
+
"type": "string",
|
17
|
+
"destination": "conf"
|
18
|
+
}
|
19
|
+
]
|
20
|
+
}
|
Binary file
|
Binary file
|