mg-pso-gui 0.0.209__py3-none-any.whl → 0.0.211__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {mg_pso_gui-0.0.209.dist-info → mg_pso_gui-0.0.211.dist-info}/METADATA +1 -1
- {mg_pso_gui-0.0.209.dist-info → mg_pso_gui-0.0.211.dist-info}/RECORD +6 -6
- mgpsogui/util/PSORunner.py +21 -27
- {mg_pso_gui-0.0.209.dist-info → mg_pso_gui-0.0.211.dist-info}/WHEEL +0 -0
- {mg_pso_gui-0.0.209.dist-info → mg_pso_gui-0.0.211.dist-info}/entry_points.txt +0 -0
- {mg_pso_gui-0.0.209.dist-info → mg_pso_gui-0.0.211.dist-info}/top_level.txt +0 -0
@@ -30,12 +30,12 @@ mgpsogui/gui/images/stop.png,sha256=JPuxXQerCGpLikcp7cAj3iLCOjULMYYZ2sZe0lArh68,
|
|
30
30
|
mgpsogui/gui/images/trash.png,sha256=j8cf0kWbJd-4Jp20lUVV1o1NSeQ4v1Ej4gfcIA3DVRQ,2958
|
31
31
|
mgpsogui/gui/images/up.png,sha256=AQvFWCUqSQNaQ1E6LKZ9zNfSvW6t4mgy8uswdg9T2Hg,2457
|
32
32
|
mgpsogui/util/GraphGenerator.py,sha256=hEPhka0ZKQJ9DSSywDfwoXFQMsk3RHyG8QyTLOQnN4M,7851
|
33
|
-
mgpsogui/util/PSORunner.py,sha256=
|
33
|
+
mgpsogui/util/PSORunner.py,sha256=H6FqTRpgmkBWi9G7uqx2ucktHrUtSqZO1kM-HGCaSOA,6498
|
34
34
|
mgpsogui/util/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
35
35
|
mgpsogui/util/CTkToolTip/__init__.py,sha256=G1jxV55hGtGgwyC1sR-uUUdasDdh0XZgcI-aILgGYA0,225
|
36
36
|
mgpsogui/util/CTkToolTip/ctk_tooltip.py,sha256=SZMovpQIGvdpDRbqCKl9SHs92DrFCO2MOYL2ifolvOE,6329
|
37
|
-
mg_pso_gui-0.0.
|
38
|
-
mg_pso_gui-0.0.
|
39
|
-
mg_pso_gui-0.0.
|
40
|
-
mg_pso_gui-0.0.
|
41
|
-
mg_pso_gui-0.0.
|
37
|
+
mg_pso_gui-0.0.211.dist-info/METADATA,sha256=TNDDzgA99DMOg2qgKKnqoArx8X-JGfWlCWAEwDKmkFU,9459
|
38
|
+
mg_pso_gui-0.0.211.dist-info/WHEEL,sha256=Xo9-1PvkuimrydujYJAjF7pCkriuXBpUPEjma1nZyJ0,92
|
39
|
+
mg_pso_gui-0.0.211.dist-info/entry_points.txt,sha256=jg82VOFjR1XDGrchs1wJSCqKYE4Ozv12aBcCSp--koA,117
|
40
|
+
mg_pso_gui-0.0.211.dist-info/top_level.txt,sha256=y7JuS9xJN5YdxUsQ3PSVjN8MzQAnR146bP3ZN3PYWdE,9
|
41
|
+
mg_pso_gui-0.0.211.dist-info/RECORD,,
|
mgpsogui/util/PSORunner.py
CHANGED
@@ -80,33 +80,27 @@ def run_process(stdout_queue, stderr_queue, results_queue, data, folder):
|
|
80
80
|
|
81
81
|
import threading
|
82
82
|
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
results_queue = Queue()
|
106
|
-
optimizer_thread = threading.Thread(target=run_optimizer_thread, args=(steps, calibration_map, args, options, oh_strategy, results_queue))
|
107
|
-
optimizer_thread.start()
|
108
|
-
optimizer_thread.join()
|
109
|
-
optimizer, trace = results_queue.get()
|
83
|
+
|
84
|
+
optimizer, trace = global_best(steps,
|
85
|
+
rounds=(int(calibration_map['min_rounds']), int(calibration_map['max_rounds'])),
|
86
|
+
args=args,
|
87
|
+
n_particles=int(calibration_map['n_particles']),
|
88
|
+
iters=int(calibration_map['iters']),
|
89
|
+
n_threads=int(calibration_map['n_threads']),
|
90
|
+
# ftol=0.00000001,
|
91
|
+
options=options,
|
92
|
+
oh_strategy=oh_strategy,
|
93
|
+
conf={
|
94
|
+
'service_timeout': int(calibration_map['service_timeout']),
|
95
|
+
'http_retry': int(calibration_map['http_retry']),
|
96
|
+
'http_allow_redirects': True if calibration_map['allow_redirects'] == "True" else False,
|
97
|
+
'async_call': True if calibration_map['async_call'] == "True" else False,
|
98
|
+
'http_conn_timeout': int(calibration_map['conn_timeout']),
|
99
|
+
'http_read_timeout': int(calibration_map['read_timeout']),
|
100
|
+
'particles_fail': int(calibration_map['particles_fail'])
|
101
|
+
},
|
102
|
+
)
|
103
|
+
|
110
104
|
|
111
105
|
stdour_thread.join()
|
112
106
|
stderr_thread.join()
|
File without changes
|
File without changes
|
File without changes
|