mg-pso-gui 0.1.164__py3-none-any.whl → 0.1.166__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.1.164.dist-info → mg_pso_gui-0.1.166.dist-info}/METADATA +1 -1
- {mg_pso_gui-0.1.164.dist-info → mg_pso_gui-0.1.166.dist-info}/RECORD +7 -7
- mgpsogui/util/GraphGenerator.py +2 -2
- mgpsogui/util/PSORunner.py +5 -2
- {mg_pso_gui-0.1.164.dist-info → mg_pso_gui-0.1.166.dist-info}/WHEEL +0 -0
- {mg_pso_gui-0.1.164.dist-info → mg_pso_gui-0.1.166.dist-info}/entry_points.txt +0 -0
- {mg_pso_gui-0.1.164.dist-info → mg_pso_gui-0.1.166.dist-info}/top_level.txt +0 -0
@@ -32,8 +32,8 @@ mgpsogui/gui/images/stop.png,sha256=JPuxXQerCGpLikcp7cAj3iLCOjULMYYZ2sZe0lArh68,
|
|
32
32
|
mgpsogui/gui/images/test.png,sha256=MUnVpRK-isxhEHzx4Q6Yh0M6FRZD1qvgCHH2XmiSBbk,3642
|
33
33
|
mgpsogui/gui/images/trash.png,sha256=j8cf0kWbJd-4Jp20lUVV1o1NSeQ4v1Ej4gfcIA3DVRQ,2958
|
34
34
|
mgpsogui/gui/images/up.png,sha256=AQvFWCUqSQNaQ1E6LKZ9zNfSvW6t4mgy8uswdg9T2Hg,2457
|
35
|
-
mgpsogui/util/GraphGenerator.py,sha256
|
36
|
-
mgpsogui/util/PSORunner.py,sha256=
|
35
|
+
mgpsogui/util/GraphGenerator.py,sha256=q4Iy0cnGeP1coqU1CajzJHMppha_hC-cFX56_gEwA84,17279
|
36
|
+
mgpsogui/util/PSORunner.py,sha256=sWgickFGl97p3ybWz97LR5qeYhnNqryKx5nWAa-NhwA,6306
|
37
37
|
mgpsogui/util/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
38
38
|
mgpsogui/util/debug.py,sha256=Swzny9_1S-CCONWGssj9iDoSpbwu5Vr4f95g_9L8bec,19759
|
39
39
|
mgpsogui/util/helpers.py,sha256=Ht2rge_4pGO7halz6KoLsL2eukB0k2tlkx68lBBmBA8,2669
|
@@ -58,8 +58,8 @@ mgpsogui/util/recosu/utils/trace_writer.py,sha256=V9BJlOjCbNYGoXGEk3CF5wjifBxvar
|
|
58
58
|
mgpsogui/util/recosu/utils/utils.py,sha256=QB8vftq3142ekG0ORjz0ZBHU5YknXbR0oTsrxrPAsF0,3951
|
59
59
|
mgpsogui/util/recosu/utils/plot/__init__.py,sha256=h1KjM7_tNDv351pcwt8A6Ibb1jhwWyx5Gbu-zj-sI3Q,71
|
60
60
|
mgpsogui/util/recosu/utils/plot/cost_steps.py,sha256=1Ce11AJyweWkmvjXPxEygzS-h8yVLmQEDLS53yjPLqQ,3779
|
61
|
-
mg_pso_gui-0.1.
|
62
|
-
mg_pso_gui-0.1.
|
63
|
-
mg_pso_gui-0.1.
|
64
|
-
mg_pso_gui-0.1.
|
65
|
-
mg_pso_gui-0.1.
|
61
|
+
mg_pso_gui-0.1.166.dist-info/METADATA,sha256=hE-sYExHfr-FAg2910a6uU45x5qjPoxPXQzx9afamCc,9460
|
62
|
+
mg_pso_gui-0.1.166.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
63
|
+
mg_pso_gui-0.1.166.dist-info/entry_points.txt,sha256=jg82VOFjR1XDGrchs1wJSCqKYE4Ozv12aBcCSp--koA,117
|
64
|
+
mg_pso_gui-0.1.166.dist-info/top_level.txt,sha256=y7JuS9xJN5YdxUsQ3PSVjN8MzQAnR146bP3ZN3PYWdE,9
|
65
|
+
mg_pso_gui-0.1.166.dist-info/RECORD,,
|
mgpsogui/util/GraphGenerator.py
CHANGED
@@ -460,11 +460,11 @@ def sampling_csv(homepage, option_manager):
|
|
460
460
|
|
461
461
|
yy = pd.to_numeric(data[val], errors="coerce")
|
462
462
|
|
463
|
-
yy_unit = "
|
463
|
+
yy_unit = ""
|
464
464
|
|
465
465
|
yy2 = pd.to_numeric(data[val2], errors="coerce")
|
466
466
|
|
467
|
-
yy2_unit = "
|
467
|
+
yy2_unit = ""
|
468
468
|
|
469
469
|
fig.add_trace(go.Scatter(x=xx, y=yy, name=val, mode='markers'))
|
470
470
|
fig.add_trace(go.Scatter(x=xx, y=yy2, name=val2, yaxis='y2', mode='markers'))
|
mgpsogui/util/PSORunner.py
CHANGED
@@ -33,6 +33,9 @@ def run_process(stdout_queue, stderr_queue, results_queue, data, folder):
|
|
33
33
|
if not os.path.exists(folder):
|
34
34
|
os.makedirs(folder)
|
35
35
|
|
36
|
+
if not os.path.exists(os.path.join(folder, "results")):
|
37
|
+
os.makedirs(os.path.join(folder, "results"))
|
38
|
+
|
36
39
|
if (os.path.exists(os.path.join(folder, 'output.txt'))):
|
37
40
|
os.remove(os.path.join(folder, 'output.txt'))
|
38
41
|
|
@@ -112,7 +115,7 @@ def run_process(stdout_queue, stderr_queue, results_queue, data, folder):
|
|
112
115
|
int(calibration_map['num_threads']),
|
113
116
|
"halton",
|
114
117
|
conf=config,
|
115
|
-
trace_file=os.path.join(folder, 'halton_trace.
|
118
|
+
trace_file=os.path.join(folder, 'results', 'halton_trace.csv'),
|
116
119
|
offset=int(calibration_map['offset']))
|
117
120
|
results_queue.put(trace)
|
118
121
|
print(trace, flush=True)
|
@@ -125,7 +128,7 @@ def run_process(stdout_queue, stderr_queue, results_queue, data, folder):
|
|
125
128
|
int(calibration_map['num_threads']),
|
126
129
|
"random",
|
127
130
|
conf=config,
|
128
|
-
trace_file=os.path.join(folder, 'random_trace.
|
131
|
+
trace_file=os.path.join(folder, 'results', 'random_trace.csv'))
|
129
132
|
results_queue.put(trace)
|
130
133
|
print(trace, flush=True)
|
131
134
|
else:
|
File without changes
|
File without changes
|
File without changes
|