omniopt2 7279__py3-none-any.whl → 7281__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.
- .omniopt.py +53 -54
- {omniopt2-7279.data → omniopt2-7281.data}/data/bin/.omniopt.py +53 -54
- {omniopt2-7279.dist-info → omniopt2-7281.dist-info}/METADATA +1 -1
- {omniopt2-7279.dist-info → omniopt2-7281.dist-info}/RECORD +35 -35
- omniopt2.egg-info/PKG-INFO +1 -1
- pyproject.toml +1 -1
- {omniopt2-7279.data → omniopt2-7281.data}/data/bin/.colorfunctions.sh +0 -0
- {omniopt2-7279.data → omniopt2-7281.data}/data/bin/.general.sh +0 -0
- {omniopt2-7279.data → omniopt2-7281.data}/data/bin/.helpers.py +0 -0
- {omniopt2-7279.data → omniopt2-7281.data}/data/bin/.omniopt_plot_cpu_ram_usage.py +0 -0
- {omniopt2-7279.data → omniopt2-7281.data}/data/bin/.omniopt_plot_general.py +0 -0
- {omniopt2-7279.data → omniopt2-7281.data}/data/bin/.omniopt_plot_gpu_usage.py +0 -0
- {omniopt2-7279.data → omniopt2-7281.data}/data/bin/.omniopt_plot_kde.py +0 -0
- {omniopt2-7279.data → omniopt2-7281.data}/data/bin/.omniopt_plot_scatter.py +0 -0
- {omniopt2-7279.data → omniopt2-7281.data}/data/bin/.omniopt_plot_scatter_generation_method.py +0 -0
- {omniopt2-7279.data → omniopt2-7281.data}/data/bin/.omniopt_plot_scatter_hex.py +0 -0
- {omniopt2-7279.data → omniopt2-7281.data}/data/bin/.omniopt_plot_time_and_exit_code.py +0 -0
- {omniopt2-7279.data → omniopt2-7281.data}/data/bin/.omniopt_plot_trial_index_result.py +0 -0
- {omniopt2-7279.data → omniopt2-7281.data}/data/bin/.omniopt_plot_worker.py +0 -0
- {omniopt2-7279.data → omniopt2-7281.data}/data/bin/.random_generator.py +0 -0
- {omniopt2-7279.data → omniopt2-7281.data}/data/bin/.shellscript_functions +0 -0
- {omniopt2-7279.data → omniopt2-7281.data}/data/bin/.tpe.py +0 -0
- {omniopt2-7279.data → omniopt2-7281.data}/data/bin/LICENSE +0 -0
- {omniopt2-7279.data → omniopt2-7281.data}/data/bin/apt-dependencies.txt +0 -0
- {omniopt2-7279.data → omniopt2-7281.data}/data/bin/omniopt +0 -0
- {omniopt2-7279.data → omniopt2-7281.data}/data/bin/omniopt_docker +0 -0
- {omniopt2-7279.data → omniopt2-7281.data}/data/bin/omniopt_evaluate +0 -0
- {omniopt2-7279.data → omniopt2-7281.data}/data/bin/omniopt_plot +0 -0
- {omniopt2-7279.data → omniopt2-7281.data}/data/bin/omniopt_share +0 -0
- {omniopt2-7279.data → omniopt2-7281.data}/data/bin/requirements.txt +0 -0
- {omniopt2-7279.data → omniopt2-7281.data}/data/bin/setup.py +0 -0
- {omniopt2-7279.data → omniopt2-7281.data}/data/bin/test_requirements.txt +0 -0
- {omniopt2-7279.dist-info → omniopt2-7281.dist-info}/WHEEL +0 -0
- {omniopt2-7279.dist-info → omniopt2-7281.dist-info}/licenses/LICENSE +0 -0
- {omniopt2-7279.dist-info → omniopt2-7281.dist-info}/top_level.txt +0 -0
.omniopt.py
CHANGED
@@ -8178,88 +8178,87 @@ def create_systematic_step(model: Any, _num_trials: int = -1, index: Optional[in
|
|
8178
8178
|
|
8179
8179
|
@beartype
|
8180
8180
|
def set_global_generation_strategy() -> None:
|
8181
|
-
|
8182
|
-
global global_gs, generation_strategy_human_readable
|
8181
|
+
global global_gs, generation_strategy_human_readable
|
8183
8182
|
|
8184
|
-
|
8183
|
+
args_generation_strategy = args.generation_strategy
|
8185
8184
|
|
8186
|
-
|
8185
|
+
continue_not_supported_on_custom_generation_strategy()
|
8187
8186
|
|
8188
|
-
|
8189
|
-
|
8187
|
+
gs_names: list = []
|
8188
|
+
gs_nodes: list = []
|
8190
8189
|
|
8191
|
-
|
8192
|
-
|
8193
|
-
|
8194
|
-
|
8190
|
+
if args_generation_strategy is None:
|
8191
|
+
num_imported_jobs: int = get_nr_of_imported_jobs()
|
8192
|
+
set_max_eval(max_eval + num_imported_jobs)
|
8193
|
+
set_random_steps(random_steps or 0)
|
8195
8194
|
|
8196
|
-
|
8197
|
-
|
8195
|
+
if max_eval is None:
|
8196
|
+
set_max_eval(max(1, random_steps))
|
8198
8197
|
|
8199
|
-
|
8198
|
+
chosen_model = get_chosen_model()
|
8200
8199
|
|
8201
|
-
|
8202
|
-
|
8200
|
+
if chosen_model == "SOBOL":
|
8201
|
+
set_random_steps(max_eval)
|
8203
8202
|
|
8204
|
-
|
8205
|
-
|
8206
|
-
|
8207
|
-
|
8203
|
+
if random_steps >= 1:
|
8204
|
+
next_node_name = None
|
8205
|
+
if max_eval - random_steps and chosen_model:
|
8206
|
+
next_node_name = chosen_model
|
8208
8207
|
|
8209
|
-
|
8210
|
-
|
8208
|
+
gs_names.append(get_step_name("SOBOL", random_steps))
|
8209
|
+
gs_nodes.append(create_node("SOBOL", random_steps, next_node_name))
|
8211
8210
|
|
8212
|
-
|
8211
|
+
write_state_file("model", str(chosen_model))
|
8213
8212
|
|
8214
|
-
|
8215
|
-
|
8213
|
+
if chosen_model != "SOBOL" and max_eval > random_steps:
|
8214
|
+
this_node = create_node(chosen_model, max_eval - random_steps, None)
|
8216
8215
|
|
8217
|
-
|
8218
|
-
|
8216
|
+
gs_names.append(get_step_name(chosen_model, max_eval - random_steps))
|
8217
|
+
gs_nodes.append(this_node)
|
8219
8218
|
|
8220
|
-
|
8219
|
+
generation_strategy_human_readable = join_with_comma_and_then(gs_names)
|
8221
8220
|
|
8222
|
-
|
8223
|
-
|
8224
|
-
|
8225
|
-
|
8226
|
-
|
8227
|
-
|
8228
|
-
|
8221
|
+
try:
|
8222
|
+
global_gs = GenerationStrategy(
|
8223
|
+
name="+".join(gs_names),
|
8224
|
+
nodes=gs_nodes
|
8225
|
+
)
|
8226
|
+
except ax.exceptions.generation_strategy.GenerationStrategyMisconfiguredException as e:
|
8227
|
+
print_red(f"Error: {e}\ngs_names: {gs_names}\ngs_nodes: {gs_nodes}")
|
8229
8228
|
|
8230
|
-
|
8231
|
-
|
8232
|
-
|
8229
|
+
my_exit(55)
|
8230
|
+
else:
|
8231
|
+
generation_strategy_array, new_max_eval = parse_generation_strategy_string(args_generation_strategy)
|
8233
8232
|
|
8234
|
-
|
8233
|
+
new_max_eval_plus_inserted_jobs = new_max_eval + get_nr_of_imported_jobs()
|
8235
8234
|
|
8236
|
-
|
8237
|
-
|
8238
|
-
|
8235
|
+
if max_eval < new_max_eval_plus_inserted_jobs:
|
8236
|
+
print_yellow(f"--generation_strategy {args_generation_strategy.upper()} has, in sum, more tasks than --max_eval {max_eval}. max_eval will be set to {new_max_eval_plus_inserted_jobs}.")
|
8237
|
+
set_max_eval(new_max_eval_plus_inserted_jobs)
|
8239
8238
|
|
8240
|
-
|
8239
|
+
print_generation_strategy(generation_strategy_array)
|
8241
8240
|
|
8242
|
-
|
8241
|
+
start_index = int(len(generation_strategy_array) / 2)
|
8243
8242
|
|
8244
|
-
|
8243
|
+
steps: list = []
|
8245
8244
|
|
8246
|
-
|
8247
|
-
|
8245
|
+
for gs_element in generation_strategy_array:
|
8246
|
+
model_name = list(gs_element.keys())[0]
|
8248
8247
|
|
8249
|
-
|
8248
|
+
nr = int(gs_element[model_name])
|
8250
8249
|
|
8251
|
-
|
8252
|
-
|
8250
|
+
gs_elem = create_systematic_step(select_model(model_name), nr, start_index)
|
8251
|
+
steps.append(gs_elem)
|
8253
8252
|
|
8254
|
-
|
8253
|
+
gs_names.append(get_step_name(model_name, nr))
|
8255
8254
|
|
8256
|
-
|
8255
|
+
start_index = start_index + 1
|
8257
8256
|
|
8258
|
-
|
8257
|
+
write_state_file("custom_generation_strategy", args_generation_strategy)
|
8259
8258
|
|
8260
|
-
|
8259
|
+
global_gs = GenerationStrategy(steps=steps)
|
8261
8260
|
|
8262
|
-
|
8261
|
+
generation_strategy_human_readable = join_with_comma_and_then(gs_names)
|
8263
8262
|
|
8264
8263
|
@beartype
|
8265
8264
|
def wait_for_jobs_or_break(_max_eval: Optional[int], _progress_bar: Any) -> bool:
|
@@ -8178,88 +8178,87 @@ def create_systematic_step(model: Any, _num_trials: int = -1, index: Optional[in
|
|
8178
8178
|
|
8179
8179
|
@beartype
|
8180
8180
|
def set_global_generation_strategy() -> None:
|
8181
|
-
|
8182
|
-
global global_gs, generation_strategy_human_readable
|
8181
|
+
global global_gs, generation_strategy_human_readable
|
8183
8182
|
|
8184
|
-
|
8183
|
+
args_generation_strategy = args.generation_strategy
|
8185
8184
|
|
8186
|
-
|
8185
|
+
continue_not_supported_on_custom_generation_strategy()
|
8187
8186
|
|
8188
|
-
|
8189
|
-
|
8187
|
+
gs_names: list = []
|
8188
|
+
gs_nodes: list = []
|
8190
8189
|
|
8191
|
-
|
8192
|
-
|
8193
|
-
|
8194
|
-
|
8190
|
+
if args_generation_strategy is None:
|
8191
|
+
num_imported_jobs: int = get_nr_of_imported_jobs()
|
8192
|
+
set_max_eval(max_eval + num_imported_jobs)
|
8193
|
+
set_random_steps(random_steps or 0)
|
8195
8194
|
|
8196
|
-
|
8197
|
-
|
8195
|
+
if max_eval is None:
|
8196
|
+
set_max_eval(max(1, random_steps))
|
8198
8197
|
|
8199
|
-
|
8198
|
+
chosen_model = get_chosen_model()
|
8200
8199
|
|
8201
|
-
|
8202
|
-
|
8200
|
+
if chosen_model == "SOBOL":
|
8201
|
+
set_random_steps(max_eval)
|
8203
8202
|
|
8204
|
-
|
8205
|
-
|
8206
|
-
|
8207
|
-
|
8203
|
+
if random_steps >= 1:
|
8204
|
+
next_node_name = None
|
8205
|
+
if max_eval - random_steps and chosen_model:
|
8206
|
+
next_node_name = chosen_model
|
8208
8207
|
|
8209
|
-
|
8210
|
-
|
8208
|
+
gs_names.append(get_step_name("SOBOL", random_steps))
|
8209
|
+
gs_nodes.append(create_node("SOBOL", random_steps, next_node_name))
|
8211
8210
|
|
8212
|
-
|
8211
|
+
write_state_file("model", str(chosen_model))
|
8213
8212
|
|
8214
|
-
|
8215
|
-
|
8213
|
+
if chosen_model != "SOBOL" and max_eval > random_steps:
|
8214
|
+
this_node = create_node(chosen_model, max_eval - random_steps, None)
|
8216
8215
|
|
8217
|
-
|
8218
|
-
|
8216
|
+
gs_names.append(get_step_name(chosen_model, max_eval - random_steps))
|
8217
|
+
gs_nodes.append(this_node)
|
8219
8218
|
|
8220
|
-
|
8219
|
+
generation_strategy_human_readable = join_with_comma_and_then(gs_names)
|
8221
8220
|
|
8222
|
-
|
8223
|
-
|
8224
|
-
|
8225
|
-
|
8226
|
-
|
8227
|
-
|
8228
|
-
|
8221
|
+
try:
|
8222
|
+
global_gs = GenerationStrategy(
|
8223
|
+
name="+".join(gs_names),
|
8224
|
+
nodes=gs_nodes
|
8225
|
+
)
|
8226
|
+
except ax.exceptions.generation_strategy.GenerationStrategyMisconfiguredException as e:
|
8227
|
+
print_red(f"Error: {e}\ngs_names: {gs_names}\ngs_nodes: {gs_nodes}")
|
8229
8228
|
|
8230
|
-
|
8231
|
-
|
8232
|
-
|
8229
|
+
my_exit(55)
|
8230
|
+
else:
|
8231
|
+
generation_strategy_array, new_max_eval = parse_generation_strategy_string(args_generation_strategy)
|
8233
8232
|
|
8234
|
-
|
8233
|
+
new_max_eval_plus_inserted_jobs = new_max_eval + get_nr_of_imported_jobs()
|
8235
8234
|
|
8236
|
-
|
8237
|
-
|
8238
|
-
|
8235
|
+
if max_eval < new_max_eval_plus_inserted_jobs:
|
8236
|
+
print_yellow(f"--generation_strategy {args_generation_strategy.upper()} has, in sum, more tasks than --max_eval {max_eval}. max_eval will be set to {new_max_eval_plus_inserted_jobs}.")
|
8237
|
+
set_max_eval(new_max_eval_plus_inserted_jobs)
|
8239
8238
|
|
8240
|
-
|
8239
|
+
print_generation_strategy(generation_strategy_array)
|
8241
8240
|
|
8242
|
-
|
8241
|
+
start_index = int(len(generation_strategy_array) / 2)
|
8243
8242
|
|
8244
|
-
|
8243
|
+
steps: list = []
|
8245
8244
|
|
8246
|
-
|
8247
|
-
|
8245
|
+
for gs_element in generation_strategy_array:
|
8246
|
+
model_name = list(gs_element.keys())[0]
|
8248
8247
|
|
8249
|
-
|
8248
|
+
nr = int(gs_element[model_name])
|
8250
8249
|
|
8251
|
-
|
8252
|
-
|
8250
|
+
gs_elem = create_systematic_step(select_model(model_name), nr, start_index)
|
8251
|
+
steps.append(gs_elem)
|
8253
8252
|
|
8254
|
-
|
8253
|
+
gs_names.append(get_step_name(model_name, nr))
|
8255
8254
|
|
8256
|
-
|
8255
|
+
start_index = start_index + 1
|
8257
8256
|
|
8258
|
-
|
8257
|
+
write_state_file("custom_generation_strategy", args_generation_strategy)
|
8259
8258
|
|
8260
|
-
|
8259
|
+
global_gs = GenerationStrategy(steps=steps)
|
8261
8260
|
|
8262
|
-
|
8261
|
+
generation_strategy_human_readable = join_with_comma_and_then(gs_names)
|
8263
8262
|
|
8264
8263
|
@beartype
|
8265
8264
|
def wait_for_jobs_or_break(_max_eval: Optional[int], _progress_bar: Any) -> bool:
|
@@ -3,7 +3,7 @@
|
|
3
3
|
.general.sh,sha256=uyGMN8xNToQ0v50KoiYxm6jRmgf0orroOaodM_Nuq30,2107
|
4
4
|
.gitignore,sha256=OMaFWOR6wxjAlI85rF3euQcjQFFAl1F34abZkltKnaU,3714
|
5
5
|
.helpers.py,sha256=6uoxzpi8zfvvQy16LpGkIC1OzvDC8TR8luAOX1iW1OM,30679
|
6
|
-
.omniopt.py,sha256=
|
6
|
+
.omniopt.py,sha256=FvfuDNfKJDLet_3ZQxOOuPynaBCvIcQX1qPIlRUDdrc,401631
|
7
7
|
.omniopt_plot_cpu_ram_usage.py,sha256=DbOAmdrbcZtsMnHJgHfeRngjtv6zX5J0axyua_dYezc,3932
|
8
8
|
.omniopt_plot_general.py,sha256=ZERZJkvVOoJhi7SszmTF1Iln-_08_0Aki48u3LHUW-k,6809
|
9
9
|
.omniopt_plot_gpu_usage.py,sha256=ojxVicwSoiyl7f3c-6lLuT2EpyPcSJKEcbp75LgDY2k,5107
|
@@ -26,44 +26,44 @@ omniopt_docker,sha256=LWVUeyvmA5AKqAHiH9jBUkR5uZ6AHMnSy0eET7mK6E4,3602
|
|
26
26
|
omniopt_evaluate,sha256=9oBh0_ikCuIz_aJQZrN0j39NDiIDYoSvEFmSVIoFjJE,23842
|
27
27
|
omniopt_plot,sha256=Z8ZR10p-ZRSgMeVPO-wVCJ8lk-LQtntjZ9Bk9RifCIs,13360
|
28
28
|
omniopt_share,sha256=PiO7Vt-dL5aC2uAZZZEYlNbyGjkyMUSeWVoiIURjr3k,13999
|
29
|
-
pyproject.toml,sha256
|
29
|
+
pyproject.toml,sha256=-uQzz4uL1Nc826o6JCarmR_im_r_QfD3YuMsozP0avI,397
|
30
30
|
requirements.txt,sha256=jqvp-P5m33fwsODnA_FFVVujUwIt9z_nhBRIxAtahcQ,302
|
31
31
|
setup.cfg,sha256=HEc8uu6NpfxG5_AVh5SvXOpEFMNKPPPxgMIAH144vT4,38
|
32
32
|
test_requirements.txt,sha256=qUBRLahv3rTxvKyddRhEzT-EnQyKdubu5KxyGhUHPr8,470
|
33
|
-
omniopt2-
|
34
|
-
omniopt2-
|
35
|
-
omniopt2-
|
36
|
-
omniopt2-
|
37
|
-
omniopt2-
|
38
|
-
omniopt2-
|
39
|
-
omniopt2-
|
40
|
-
omniopt2-
|
41
|
-
omniopt2-
|
42
|
-
omniopt2-
|
43
|
-
omniopt2-
|
44
|
-
omniopt2-
|
45
|
-
omniopt2-
|
46
|
-
omniopt2-
|
47
|
-
omniopt2-
|
48
|
-
omniopt2-
|
49
|
-
omniopt2-
|
50
|
-
omniopt2-
|
51
|
-
omniopt2-
|
52
|
-
omniopt2-
|
53
|
-
omniopt2-
|
54
|
-
omniopt2-
|
55
|
-
omniopt2-
|
56
|
-
omniopt2-
|
57
|
-
omniopt2-
|
58
|
-
omniopt2-
|
59
|
-
omniopt2-
|
60
|
-
omniopt2-
|
61
|
-
omniopt2.egg-info/PKG-INFO,sha256=
|
33
|
+
omniopt2-7281.data/data/bin/.colorfunctions.sh,sha256=xxc08V3Fh_0Je20fkJMRO14u9VCSvMyOiMaDfioEyCY,1098
|
34
|
+
omniopt2-7281.data/data/bin/.general.sh,sha256=uyGMN8xNToQ0v50KoiYxm6jRmgf0orroOaodM_Nuq30,2107
|
35
|
+
omniopt2-7281.data/data/bin/.helpers.py,sha256=6uoxzpi8zfvvQy16LpGkIC1OzvDC8TR8luAOX1iW1OM,30679
|
36
|
+
omniopt2-7281.data/data/bin/.omniopt.py,sha256=FvfuDNfKJDLet_3ZQxOOuPynaBCvIcQX1qPIlRUDdrc,401631
|
37
|
+
omniopt2-7281.data/data/bin/.omniopt_plot_cpu_ram_usage.py,sha256=DbOAmdrbcZtsMnHJgHfeRngjtv6zX5J0axyua_dYezc,3932
|
38
|
+
omniopt2-7281.data/data/bin/.omniopt_plot_general.py,sha256=ZERZJkvVOoJhi7SszmTF1Iln-_08_0Aki48u3LHUW-k,6809
|
39
|
+
omniopt2-7281.data/data/bin/.omniopt_plot_gpu_usage.py,sha256=ojxVicwSoiyl7f3c-6lLuT2EpyPcSJKEcbp75LgDY2k,5107
|
40
|
+
omniopt2-7281.data/data/bin/.omniopt_plot_kde.py,sha256=uRLWr72TDKvj3AqJ0O0AvkKZ1ok1O1QpXnbfQQdo0nA,6873
|
41
|
+
omniopt2-7281.data/data/bin/.omniopt_plot_scatter.py,sha256=-amqmLR_YLCbHImLPh6gwVFv8iiVnXME544XHsRVCuw,8422
|
42
|
+
omniopt2-7281.data/data/bin/.omniopt_plot_scatter_generation_method.py,sha256=rgKY_w1E516c9UucVaEvaKd8tCnoUq9xg-RrYSDzYEQ,4289
|
43
|
+
omniopt2-7281.data/data/bin/.omniopt_plot_scatter_hex.py,sha256=w1L5gL6Bc_QudoSJi2lxEVvF17Apjjb3l2T-lXGnsUg,10279
|
44
|
+
omniopt2-7281.data/data/bin/.omniopt_plot_time_and_exit_code.py,sha256=hC4RFDiJN_UImezFR6M5uVF-QKDqMDpq6R5DIg7dDDc,6463
|
45
|
+
omniopt2-7281.data/data/bin/.omniopt_plot_trial_index_result.py,sha256=5DmqZAQO_PFmzdap-TIhSMAshRXpOHQacnHAtjwnzN4,4629
|
46
|
+
omniopt2-7281.data/data/bin/.omniopt_plot_worker.py,sha256=VuluQq4W6KRR5RU08dxmDSFk5mbfDRkRJQFwwcLgAGw,4524
|
47
|
+
omniopt2-7281.data/data/bin/.random_generator.py,sha256=ezBBUXpez_QaGdpCglMcJ0KZPdQP0XdX5gnLzO1xhwU,2987
|
48
|
+
omniopt2-7281.data/data/bin/.shellscript_functions,sha256=55nF3dy_xOeEzkDBINnu72L3RUAWMbnQbK_4GsoJlnA,13548
|
49
|
+
omniopt2-7281.data/data/bin/.tpe.py,sha256=Yd9s-ixCbWxTd3x0O1M1sok9QfM2mBEfsDwXhx50-Nc,6464
|
50
|
+
omniopt2-7281.data/data/bin/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
51
|
+
omniopt2-7281.data/data/bin/apt-dependencies.txt,sha256=X5tBB8ZLW9XaFtRh8B7C2pIkSoxNNawqioDr0QZAtuM,149
|
52
|
+
omniopt2-7281.data/data/bin/omniopt,sha256=WNbAGQOvqlmDPZyT3DrFJEg1Xn-QH07cgnq8n4jdRBc,47798
|
53
|
+
omniopt2-7281.data/data/bin/omniopt_docker,sha256=LWVUeyvmA5AKqAHiH9jBUkR5uZ6AHMnSy0eET7mK6E4,3602
|
54
|
+
omniopt2-7281.data/data/bin/omniopt_evaluate,sha256=9oBh0_ikCuIz_aJQZrN0j39NDiIDYoSvEFmSVIoFjJE,23842
|
55
|
+
omniopt2-7281.data/data/bin/omniopt_plot,sha256=Z8ZR10p-ZRSgMeVPO-wVCJ8lk-LQtntjZ9Bk9RifCIs,13360
|
56
|
+
omniopt2-7281.data/data/bin/omniopt_share,sha256=PiO7Vt-dL5aC2uAZZZEYlNbyGjkyMUSeWVoiIURjr3k,13999
|
57
|
+
omniopt2-7281.data/data/bin/requirements.txt,sha256=jqvp-P5m33fwsODnA_FFVVujUwIt9z_nhBRIxAtahcQ,302
|
58
|
+
omniopt2-7281.data/data/bin/setup.py,sha256=g3uEqJHXhggXwgLYoxOjsXg9Z6IV1ubh-Og59AZ264Q,4648
|
59
|
+
omniopt2-7281.data/data/bin/test_requirements.txt,sha256=qUBRLahv3rTxvKyddRhEzT-EnQyKdubu5KxyGhUHPr8,470
|
60
|
+
omniopt2-7281.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
61
|
+
omniopt2.egg-info/PKG-INFO,sha256=ekPLQIawlNRmC3w-h-6uw8KP_5jOsqacbGoxZ1jcUik,5822
|
62
62
|
omniopt2.egg-info/SOURCES.txt,sha256=N-HtSaaqFRsd4XqAfeWVSp__3I-sw0d7cknJgyewRwQ,778
|
63
63
|
omniopt2.egg-info/dependency_links.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
64
64
|
omniopt2.egg-info/requires.txt,sha256=lR4dCom0VD9WtxDpAuN83qtJYZfMHl5GT8LjhUk6UJE,772
|
65
65
|
omniopt2.egg-info/top_level.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
66
|
-
omniopt2-
|
67
|
-
omniopt2-
|
68
|
-
omniopt2-
|
69
|
-
omniopt2-
|
66
|
+
omniopt2-7281.dist-info/METADATA,sha256=ekPLQIawlNRmC3w-h-6uw8KP_5jOsqacbGoxZ1jcUik,5822
|
67
|
+
omniopt2-7281.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
68
|
+
omniopt2-7281.dist-info/top_level.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
69
|
+
omniopt2-7281.dist-info/RECORD,,
|
omniopt2.egg-info/PKG-INFO
CHANGED
pyproject.toml
CHANGED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{omniopt2-7279.data → omniopt2-7281.data}/data/bin/.omniopt_plot_scatter_generation_method.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|