mg-pso-gui 0.1.208__py3-none-any.whl → 0.1.209__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.208.dist-info → mg_pso_gui-0.1.209.dist-info}/METADATA +1 -1
- {mg_pso_gui-0.1.208.dist-info → mg_pso_gui-0.1.209.dist-info}/RECORD +6 -6
- mgpsogui/util/GraphGenerator.py +8 -0
- {mg_pso_gui-0.1.208.dist-info → mg_pso_gui-0.1.209.dist-info}/WHEEL +0 -0
- {mg_pso_gui-0.1.208.dist-info → mg_pso_gui-0.1.209.dist-info}/entry_points.txt +0 -0
- {mg_pso_gui-0.1.208.dist-info → mg_pso_gui-0.1.209.dist-info}/top_level.txt +0 -0
@@ -34,7 +34,7 @@ mgpsogui/gui/images/stop.png,sha256=JPuxXQerCGpLikcp7cAj3iLCOjULMYYZ2sZe0lArh68,
|
|
34
34
|
mgpsogui/gui/images/test.png,sha256=MUnVpRK-isxhEHzx4Q6Yh0M6FRZD1qvgCHH2XmiSBbk,3642
|
35
35
|
mgpsogui/gui/images/trash.png,sha256=j8cf0kWbJd-4Jp20lUVV1o1NSeQ4v1Ej4gfcIA3DVRQ,2958
|
36
36
|
mgpsogui/gui/images/up.png,sha256=AQvFWCUqSQNaQ1E6LKZ9zNfSvW6t4mgy8uswdg9T2Hg,2457
|
37
|
-
mgpsogui/util/GraphGenerator.py,sha256=
|
37
|
+
mgpsogui/util/GraphGenerator.py,sha256=t2SS3dXyhYVZkeu1RskZlOjq85NYBXK6cdD0NbaMYTo,26310
|
38
38
|
mgpsogui/util/PSORunner.py,sha256=ELpRgEpUiLV4hW-A-y4yzfkFN1BXgH7LZ0qlwWBRz3s,11012
|
39
39
|
mgpsogui/util/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
40
40
|
mgpsogui/util/debug.py,sha256=Swzny9_1S-CCONWGssj9iDoSpbwu5Vr4f95g_9L8bec,19759
|
@@ -60,8 +60,8 @@ mgpsogui/util/recosu/utils/trace_writer.py,sha256=V9BJlOjCbNYGoXGEk3CF5wjifBxvar
|
|
60
60
|
mgpsogui/util/recosu/utils/utils.py,sha256=QB8vftq3142ekG0ORjz0ZBHU5YknXbR0oTsrxrPAsF0,3951
|
61
61
|
mgpsogui/util/recosu/utils/plot/__init__.py,sha256=h1KjM7_tNDv351pcwt8A6Ibb1jhwWyx5Gbu-zj-sI3Q,71
|
62
62
|
mgpsogui/util/recosu/utils/plot/cost_steps.py,sha256=1Ce11AJyweWkmvjXPxEygzS-h8yVLmQEDLS53yjPLqQ,3779
|
63
|
-
mg_pso_gui-0.1.
|
64
|
-
mg_pso_gui-0.1.
|
65
|
-
mg_pso_gui-0.1.
|
66
|
-
mg_pso_gui-0.1.
|
67
|
-
mg_pso_gui-0.1.
|
63
|
+
mg_pso_gui-0.1.209.dist-info/METADATA,sha256=2kJji5mcHBn5t1pjIoQzJ9zfz0UiDUlYSL1hbJGBHTg,9456
|
64
|
+
mg_pso_gui-0.1.209.dist-info/WHEEL,sha256=Z4pYXqR_rTB7OWNDYFOm1qRk0RX6GFP2o8LgvP453Hk,91
|
65
|
+
mg_pso_gui-0.1.209.dist-info/entry_points.txt,sha256=jg82VOFjR1XDGrchs1wJSCqKYE4Ozv12aBcCSp--koA,117
|
66
|
+
mg_pso_gui-0.1.209.dist-info/top_level.txt,sha256=y7JuS9xJN5YdxUsQ3PSVjN8MzQAnR146bP3ZN3PYWdE,9
|
67
|
+
mg_pso_gui-0.1.209.dist-info/RECORD,,
|
mgpsogui/util/GraphGenerator.py
CHANGED
@@ -148,6 +148,7 @@ def best_cost_stacked(homepage, config, data, option_manager):
|
|
148
148
|
|
149
149
|
fig.write_image(os.path.join(folder, "best_cost_stacked.png"), width=1280, height=720)
|
150
150
|
fig.write_html(os.path.join(folder, "best_cost_stacked.html"), include_plotlyjs='cdn', auto_open=False)
|
151
|
+
fig.write_json(os.path.join(folder, "best_cost_stacked.json"))
|
151
152
|
with open(os.path.join(folder, "best_cost_stacked.html"), "r") as f:
|
152
153
|
html = f.read()
|
153
154
|
html = html.replace("<body>", "<body bgcolor='#2a2a2a'>")
|
@@ -200,6 +201,7 @@ def table(homepage, config, dataframe, option_manager):
|
|
200
201
|
|
201
202
|
fig.write_image(os.path.join(folder, "table.png"), width=1280, height=720)
|
202
203
|
fig.write_html(os.path.join(folder, "table.html"), include_plotlyjs='cdn', auto_open=False)
|
204
|
+
fig.write_json(os.path.join(folder, "table.json"))
|
203
205
|
with open(os.path.join(folder, "table.html"), "r") as f:
|
204
206
|
html = f.read()
|
205
207
|
html = html.replace("<body>", "<body bgcolor='#2a2a2a'>")
|
@@ -284,6 +286,7 @@ def best_cost_by_round(homepage, config, data, option_manager):
|
|
284
286
|
|
285
287
|
fig.write_image(os.path.join(folder, "best_cost_by_round.png"), width=1280, height=720)
|
286
288
|
fig.write_html(os.path.join(folder, "best_cost_by_round.html"), include_plotlyjs='cdn', auto_open=False)
|
289
|
+
fig.write_json(os.path.join(folder, "best_cost_by_round.json"))
|
287
290
|
with open(os.path.join(folder, "best_cost_by_round.html"), "r") as f:
|
288
291
|
html = f.read()
|
289
292
|
html = html.replace("<body>", "<body bgcolor='#2a2a2a'>")
|
@@ -351,6 +354,7 @@ def calibrated_params_by_round(homepage, config, list_of_objs, option_manager):
|
|
351
354
|
|
352
355
|
fig.write_image(os.path.join(folder, "calibrated_params_by_round.png"), width=1280, height=720)
|
353
356
|
fig.write_html(os.path.join(folder, "calibrated_params_by_round.html"), include_plotlyjs='cdn', auto_open=False)
|
357
|
+
fig.write_json(os.path.join(folder, "calibrated_params_by_round.json"))
|
354
358
|
with open(os.path.join(folder, "calibrated_params_by_round.html"), "r") as f:
|
355
359
|
html = f.read()
|
356
360
|
html = html.replace("<body>", "<body bgcolor='#2a2a2a'>")
|
@@ -425,6 +429,7 @@ def custom_csv(homepage, option_manager):
|
|
425
429
|
|
426
430
|
fig.write_image(os.path.join(folder, "custom_csv.png"), width=1280, height=720)
|
427
431
|
fig.write_html(os.path.join(folder, "custom_csv.html"), include_plotlyjs='cdn', auto_open=False)
|
432
|
+
fig.write_json(os.path.join(folder, "custom_csv.json"))
|
428
433
|
with open(os.path.join(folder, "custom_csv.html"), "r") as f:
|
429
434
|
html = f.read()
|
430
435
|
html = html.replace("<body>", "<body bgcolor='#2a2a2a'>")
|
@@ -508,6 +513,7 @@ def compare_csv(homepage, option_manager):
|
|
508
513
|
|
509
514
|
fig.write_image(os.path.join(folder, "compare_csv.png"), width=1280, height=720)
|
510
515
|
fig.write_html(os.path.join(folder, "compare_csv.html"), include_plotlyjs='cdn', auto_open=False)
|
516
|
+
fig.write_json(os.path.join(folder, "compare_csv.json"))
|
511
517
|
with open(os.path.join(folder, "compare_csv.html"), "r") as f:
|
512
518
|
html = f.read()
|
513
519
|
html = html.replace("<body>", "<body bgcolor='#2a2a2a'>")
|
@@ -593,6 +599,7 @@ def sampling_csv(homepage, option_manager):
|
|
593
599
|
|
594
600
|
fig.write_image(os.path.join(folder, "sampling_csv.png"), width=1280, height=720)
|
595
601
|
fig.write_html(os.path.join(folder, "sampling_csv.html"), include_plotlyjs='cdn', auto_open=False)
|
602
|
+
fig.write_json(os.path.join(folder, "sampling_csv.json"))
|
596
603
|
with open(os.path.join(folder, "sampling_csv.html"), "r") as f:
|
597
604
|
html = f.read()
|
598
605
|
html = html.replace("<body>", "<body bgcolor='#2a2a2a'>")
|
@@ -738,6 +745,7 @@ def matrix_editor(homepage, option_manager):
|
|
738
745
|
|
739
746
|
fig.write_image(os.path.join(folder, "matrix_editor.png"), width=1280, height=720)
|
740
747
|
fig.write_html(os.path.join(folder, "matrix_editor.html"), include_plotlyjs='cdn', auto_open=False)
|
748
|
+
fig.write_json(os.path.join(folder, "matrix_editor.json"))
|
741
749
|
with open(os.path.join(folder, "matrix_editor.html"), "r") as f:
|
742
750
|
html = f.read()
|
743
751
|
html = html.replace("<body>", "<body bgcolor='#2a2a2a'>")
|
File without changes
|
File without changes
|
File without changes
|