mg-pso-gui 0.0.208__py3-none-any.whl → 0.0.210__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mg-pso-gui
3
- Version: 0.0.208
3
+ Version: 0.0.210
4
4
  Summary: GUI for MG-PSO
5
5
  Author: Robert Cordingly
6
6
  Author-email: <rcording@uw.ed>
@@ -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=TLwNaXpTsVB_8LvbDSbh9m9quHAlQ-ATIKKGD6SCRNs,6997
33
+ mgpsogui/util/PSORunner.py,sha256=nOoaV51bpN4h3Xgw14xd-UKs43YjmjEQUelQXX1qXWg,6502
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.208.dist-info/METADATA,sha256=DJ2MJbdf_Wf95W3a74ER-hPTN_J0VdClGuD8sXEvcPo,9459
38
- mg_pso_gui-0.0.208.dist-info/WHEEL,sha256=Xo9-1PvkuimrydujYJAjF7pCkriuXBpUPEjma1nZyJ0,92
39
- mg_pso_gui-0.0.208.dist-info/entry_points.txt,sha256=jg82VOFjR1XDGrchs1wJSCqKYE4Ozv12aBcCSp--koA,117
40
- mg_pso_gui-0.0.208.dist-info/top_level.txt,sha256=y7JuS9xJN5YdxUsQ3PSVjN8MzQAnR146bP3ZN3PYWdE,9
41
- mg_pso_gui-0.0.208.dist-info/RECORD,,
37
+ mg_pso_gui-0.0.210.dist-info/METADATA,sha256=uirsQDKQDAA1gfG9nkoBvsqyBnY36kJCoGXW9GGyLCc,9459
38
+ mg_pso_gui-0.0.210.dist-info/WHEEL,sha256=Xo9-1PvkuimrydujYJAjF7pCkriuXBpUPEjma1nZyJ0,92
39
+ mg_pso_gui-0.0.210.dist-info/entry_points.txt,sha256=jg82VOFjR1XDGrchs1wJSCqKYE4Ozv12aBcCSp--koA,117
40
+ mg_pso_gui-0.0.210.dist-info/top_level.txt,sha256=y7JuS9xJN5YdxUsQ3PSVjN8MzQAnR146bP3ZN3PYWdE,9
41
+ mg_pso_gui-0.0.210.dist-info/RECORD,,
@@ -76,20 +76,20 @@ def run_process(stdout_queue, stderr_queue, results_queue, data, folder):
76
76
  print(oh_strategy)
77
77
  print("\n")
78
78
 
79
- print("waiting 30 seconds...\n")
80
- time.sleep(30)
81
-
82
79
  print("Running global_best...\n")
83
80
 
84
- optimizer, trace = global_best(steps, # step definition
85
- rounds=(int(calibration_map['min_rounds']), int(calibration_map['max_rounds'])), # min/max number of rounds
86
- args=args, # static arguments
87
- n_particles=int(calibration_map['n_particles']), # number of particle candidates for each param
88
- iters=int(calibration_map['iters']), # max # of iterations
89
- n_threads=int(calibration_map['n_threads']), # number of threads to use
90
- # ftol=0.00000001, # min cost function delta for convergence
91
- options=options, # hyperparameter
92
- oh_strategy=oh_strategy, # adaptive hyperparameter adjustments based on current and max # of iterations
81
+ import threading
82
+
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
93
  conf={
94
94
  'service_timeout': int(calibration_map['service_timeout']),
95
95
  'http_retry': int(calibration_map['http_retry']),
@@ -99,7 +99,8 @@ def run_process(stdout_queue, stderr_queue, results_queue, data, folder):
99
99
  'http_read_timeout': int(calibration_map['read_timeout']),
100
100
  'particles_fail': int(calibration_map['particles_fail'])
101
101
  },
102
- )
102
+ )
103
+
103
104
 
104
105
  stdour_thread.join()
105
106
  stderr_thread.join()