omniopt2 7018__py3-none-any.whl → 7024__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.
Files changed (34) hide show
  1. .omniopt.py +7 -10
  2. {omniopt2-7018.data → omniopt2-7024.data}/data/bin/.omniopt.py +7 -10
  3. {omniopt2-7018.dist-info → omniopt2-7024.dist-info}/METADATA +1 -1
  4. {omniopt2-7018.dist-info → omniopt2-7024.dist-info}/RECORD +34 -34
  5. omniopt2.egg-info/PKG-INFO +1 -1
  6. pyproject.toml +1 -1
  7. {omniopt2-7018.data → omniopt2-7024.data}/data/bin/.colorfunctions.sh +0 -0
  8. {omniopt2-7018.data → omniopt2-7024.data}/data/bin/.general.sh +0 -0
  9. {omniopt2-7018.data → omniopt2-7024.data}/data/bin/.helpers.py +0 -0
  10. {omniopt2-7018.data → omniopt2-7024.data}/data/bin/.omniopt_plot_cpu_ram_usage.py +0 -0
  11. {omniopt2-7018.data → omniopt2-7024.data}/data/bin/.omniopt_plot_general.py +0 -0
  12. {omniopt2-7018.data → omniopt2-7024.data}/data/bin/.omniopt_plot_gpu_usage.py +0 -0
  13. {omniopt2-7018.data → omniopt2-7024.data}/data/bin/.omniopt_plot_kde.py +0 -0
  14. {omniopt2-7018.data → omniopt2-7024.data}/data/bin/.omniopt_plot_scatter.py +0 -0
  15. {omniopt2-7018.data → omniopt2-7024.data}/data/bin/.omniopt_plot_scatter_generation_method.py +0 -0
  16. {omniopt2-7018.data → omniopt2-7024.data}/data/bin/.omniopt_plot_scatter_hex.py +0 -0
  17. {omniopt2-7018.data → omniopt2-7024.data}/data/bin/.omniopt_plot_time_and_exit_code.py +0 -0
  18. {omniopt2-7018.data → omniopt2-7024.data}/data/bin/.omniopt_plot_trial_index_result.py +0 -0
  19. {omniopt2-7018.data → omniopt2-7024.data}/data/bin/.omniopt_plot_worker.py +0 -0
  20. {omniopt2-7018.data → omniopt2-7024.data}/data/bin/.random_generator.py +0 -0
  21. {omniopt2-7018.data → omniopt2-7024.data}/data/bin/.shellscript_functions +0 -0
  22. {omniopt2-7018.data → omniopt2-7024.data}/data/bin/LICENSE +0 -0
  23. {omniopt2-7018.data → omniopt2-7024.data}/data/bin/apt-dependencies.txt +0 -0
  24. {omniopt2-7018.data → omniopt2-7024.data}/data/bin/omniopt +0 -0
  25. {omniopt2-7018.data → omniopt2-7024.data}/data/bin/omniopt_docker +0 -0
  26. {omniopt2-7018.data → omniopt2-7024.data}/data/bin/omniopt_evaluate +0 -0
  27. {omniopt2-7018.data → omniopt2-7024.data}/data/bin/omniopt_plot +0 -0
  28. {omniopt2-7018.data → omniopt2-7024.data}/data/bin/omniopt_share +0 -0
  29. {omniopt2-7018.data → omniopt2-7024.data}/data/bin/requirements.txt +0 -0
  30. {omniopt2-7018.data → omniopt2-7024.data}/data/bin/setup.py +0 -0
  31. {omniopt2-7018.data → omniopt2-7024.data}/data/bin/test_requirements.txt +0 -0
  32. {omniopt2-7018.dist-info → omniopt2-7024.dist-info}/WHEEL +0 -0
  33. {omniopt2-7018.dist-info → omniopt2-7024.dist-info}/licenses/LICENSE +0 -0
  34. {omniopt2-7018.dist-info → omniopt2-7024.dist-info}/top_level.txt +0 -0
.omniopt.py CHANGED
@@ -531,7 +531,6 @@ class ConfigLoader:
531
531
  auto_exclude_defective_hosts: bool
532
532
  debug: bool
533
533
  num_restarts: int
534
- batch_limit: int
535
534
  raw_samples: int
536
535
  show_generate_time_table: bool
537
536
  max_attempts_for_generation: int
@@ -662,7 +661,6 @@ class ConfigLoader:
662
661
  speed.add_argument('--raw_samples', help='raw_samples option for optimizer_options', type=int, default=1024)
663
662
  speed.add_argument('--no_transform_inputs', help='Disable input transformations', action='store_true', default=False)
664
663
  speed.add_argument('--no_normalize_y', help='Disable target normalization', action='store_true', default=False)
665
- speed.add_argument('--batch_limit', help='batch_limit option for optimizer_options (limits number of parallel candidates per restart)', type=int, default=32)
666
664
 
667
665
  slurm.add_argument('--num_parallel_jobs', help='Number of parallel SLURM jobs (default: 20)', type=int, default=20)
668
666
  slurm.add_argument('--worker_timeout', help='Timeout for SLURM jobs (i.e. for each single point to be optimized)', type=int, default=30)
@@ -2956,11 +2954,13 @@ def find_file_paths(_text: str) -> List[str]:
2956
2954
  @beartype
2957
2955
  def check_file_info(file_path: str) -> str:
2958
2956
  if not os.path.exists(file_path):
2959
- print(f"check_file_info: The file {file_path} does not exist.")
2957
+ if not args.tests:
2958
+ print(f"check_file_info: The file {file_path} does not exist.")
2960
2959
  return ""
2961
2960
 
2962
2961
  if not os.access(file_path, os.R_OK):
2963
- print(f"check_file_info: The file {file_path} is not readable.")
2962
+ if not args.tests:
2963
+ print(f"check_file_info: The file {file_path} is not readable.")
2964
2964
  return ""
2965
2965
 
2966
2966
  file_stat = os.stat(file_path)
@@ -4063,7 +4063,8 @@ def plot_sixel_imgs() -> None:
4063
4063
  def get_crf() -> str:
4064
4064
  crf = get_current_run_folder()
4065
4065
  if crf in ["", None]:
4066
- console.print("[red]Could not find current run folder[/]")
4066
+ if not args.tests:
4067
+ console.print("[red]Could not find current run folder[/]")
4067
4068
  return ""
4068
4069
  return crf
4069
4070
 
@@ -5660,7 +5661,6 @@ def insert_jobs_from_csv(this_csv_file_path: str, experiment_parameters: Optiona
5660
5661
  with console.status("[bold green]Loading existing jobs into ax_client...") as __status:
5661
5662
  i = 0
5662
5663
  for arm_params, result in zip(arm_params_list, results_list):
5663
-
5664
5664
  __status.update(f"[bold green]Loading existing jobs from {this_csv_file_path} into ax_client")
5665
5665
  arm_params = validate_and_convert_params(experiment_parameters, arm_params)
5666
5666
 
@@ -6948,9 +6948,6 @@ def get_model_gen_kwargs() -> dict:
6948
6948
  "num_restarts": args.num_restarts,
6949
6949
  "raw_samples": args.raw_samples,
6950
6950
  # "sequential": False, # TODO, when https://github.com/facebook/Ax/issues/3819 is solved
6951
- "options": {
6952
- "batch_limit": args.batch_limit,
6953
- },
6954
6951
  },
6955
6952
  },
6956
6953
  "fallback_to_sample_polytope": True,
@@ -9247,7 +9244,7 @@ def main() -> None:
9247
9244
  write_files_and_show_overviews()
9248
9245
 
9249
9246
  for existing_run in args.load_data_from_existing_jobs:
9250
- insert_jobs_from_csv(f"{existing_run}/results.csv", experiment_parameters)
9247
+ insert_jobs_from_csv(f"{existing_run}/results.csv".replace("//", "/"), experiment_parameters)
9251
9248
 
9252
9249
  set_global_generation_strategy()
9253
9250
 
@@ -531,7 +531,6 @@ class ConfigLoader:
531
531
  auto_exclude_defective_hosts: bool
532
532
  debug: bool
533
533
  num_restarts: int
534
- batch_limit: int
535
534
  raw_samples: int
536
535
  show_generate_time_table: bool
537
536
  max_attempts_for_generation: int
@@ -662,7 +661,6 @@ class ConfigLoader:
662
661
  speed.add_argument('--raw_samples', help='raw_samples option for optimizer_options', type=int, default=1024)
663
662
  speed.add_argument('--no_transform_inputs', help='Disable input transformations', action='store_true', default=False)
664
663
  speed.add_argument('--no_normalize_y', help='Disable target normalization', action='store_true', default=False)
665
- speed.add_argument('--batch_limit', help='batch_limit option for optimizer_options (limits number of parallel candidates per restart)', type=int, default=32)
666
664
 
667
665
  slurm.add_argument('--num_parallel_jobs', help='Number of parallel SLURM jobs (default: 20)', type=int, default=20)
668
666
  slurm.add_argument('--worker_timeout', help='Timeout for SLURM jobs (i.e. for each single point to be optimized)', type=int, default=30)
@@ -2956,11 +2954,13 @@ def find_file_paths(_text: str) -> List[str]:
2956
2954
  @beartype
2957
2955
  def check_file_info(file_path: str) -> str:
2958
2956
  if not os.path.exists(file_path):
2959
- print(f"check_file_info: The file {file_path} does not exist.")
2957
+ if not args.tests:
2958
+ print(f"check_file_info: The file {file_path} does not exist.")
2960
2959
  return ""
2961
2960
 
2962
2961
  if not os.access(file_path, os.R_OK):
2963
- print(f"check_file_info: The file {file_path} is not readable.")
2962
+ if not args.tests:
2963
+ print(f"check_file_info: The file {file_path} is not readable.")
2964
2964
  return ""
2965
2965
 
2966
2966
  file_stat = os.stat(file_path)
@@ -4063,7 +4063,8 @@ def plot_sixel_imgs() -> None:
4063
4063
  def get_crf() -> str:
4064
4064
  crf = get_current_run_folder()
4065
4065
  if crf in ["", None]:
4066
- console.print("[red]Could not find current run folder[/]")
4066
+ if not args.tests:
4067
+ console.print("[red]Could not find current run folder[/]")
4067
4068
  return ""
4068
4069
  return crf
4069
4070
 
@@ -5660,7 +5661,6 @@ def insert_jobs_from_csv(this_csv_file_path: str, experiment_parameters: Optiona
5660
5661
  with console.status("[bold green]Loading existing jobs into ax_client...") as __status:
5661
5662
  i = 0
5662
5663
  for arm_params, result in zip(arm_params_list, results_list):
5663
-
5664
5664
  __status.update(f"[bold green]Loading existing jobs from {this_csv_file_path} into ax_client")
5665
5665
  arm_params = validate_and_convert_params(experiment_parameters, arm_params)
5666
5666
 
@@ -6948,9 +6948,6 @@ def get_model_gen_kwargs() -> dict:
6948
6948
  "num_restarts": args.num_restarts,
6949
6949
  "raw_samples": args.raw_samples,
6950
6950
  # "sequential": False, # TODO, when https://github.com/facebook/Ax/issues/3819 is solved
6951
- "options": {
6952
- "batch_limit": args.batch_limit,
6953
- },
6954
6951
  },
6955
6952
  },
6956
6953
  "fallback_to_sample_polytope": True,
@@ -9247,7 +9244,7 @@ def main() -> None:
9247
9244
  write_files_and_show_overviews()
9248
9245
 
9249
9246
  for existing_run in args.load_data_from_existing_jobs:
9250
- insert_jobs_from_csv(f"{existing_run}/results.csv", experiment_parameters)
9247
+ insert_jobs_from_csv(f"{existing_run}/results.csv".replace("//", "/"), experiment_parameters)
9251
9248
 
9252
9249
  set_global_generation_strategy()
9253
9250
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: omniopt2
3
- Version: 7018
3
+ Version: 7024
4
4
  Summary: Automatic highly parallelized hyperparameter optimizer based on Ax/Botorch
5
5
  Home-page: https://scads.ai/transfer-2/verfuegbare-software-dienste-en/omniopt/
6
6
  Author: Norman Koch
@@ -3,7 +3,7 @@
3
3
  .general.sh,sha256=uyGMN8xNToQ0v50KoiYxm6jRmgf0orroOaodM_Nuq30,2107
4
4
  .gitignore,sha256=OMaFWOR6wxjAlI85rF3euQcjQFFAl1F34abZkltKnaU,3714
5
5
  .helpers.py,sha256=srrRn0QBzG8JpNbHAYG2k1rQY6JYrUrNdTj-tDMJSyg,30526
6
- .omniopt.py,sha256=zVDv7PsvFP68XEgFBKTh_2lX3irOlPMMNnPja6cVSSQ,372670
6
+ .omniopt.py,sha256=kHVrafvaD-9u3Zs9HlY-FDZqyNBtWLj-mbZa_5Dt7b0,372493
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
@@ -25,43 +25,43 @@ omniopt_docker,sha256=LWVUeyvmA5AKqAHiH9jBUkR5uZ6AHMnSy0eET7mK6E4,3602
25
25
  omniopt_evaluate,sha256=9oBh0_ikCuIz_aJQZrN0j39NDiIDYoSvEFmSVIoFjJE,23842
26
26
  omniopt_plot,sha256=Z8ZR10p-ZRSgMeVPO-wVCJ8lk-LQtntjZ9Bk9RifCIs,13360
27
27
  omniopt_share,sha256=7g5I7YdoWcA6_GDwWwq0xPf23qiVc_VDrm9ySLH7SH0,14051
28
- pyproject.toml,sha256=EdQRF7D2szxmgL6zPYvjkUBQL1kyE4NeNB05xKPp5Bs,397
28
+ pyproject.toml,sha256=oo5DxjITOUe5Qf98lSJilK2Qk_QZ7HDx80i7gDXrkgo,397
29
29
  requirements.txt,sha256=gj9r1kqJK9w1q6YJuViWlq7U0GZf5SOYVO1Ndcy24L0,280
30
30
  setup.cfg,sha256=HEc8uu6NpfxG5_AVh5SvXOpEFMNKPPPxgMIAH144vT4,38
31
31
  test_requirements.txt,sha256=dnCbKmKalrVzNZ_-iQWf1xCxcnDsdGuhbDAr9XlGm-U,477
32
- omniopt2-7018.data/data/bin/.colorfunctions.sh,sha256=CDlgjwrsrHR_E6c-Qak5wZlotArXm-nf9sVvXePzGZA,1083
33
- omniopt2-7018.data/data/bin/.general.sh,sha256=uyGMN8xNToQ0v50KoiYxm6jRmgf0orroOaodM_Nuq30,2107
34
- omniopt2-7018.data/data/bin/.helpers.py,sha256=srrRn0QBzG8JpNbHAYG2k1rQY6JYrUrNdTj-tDMJSyg,30526
35
- omniopt2-7018.data/data/bin/.omniopt.py,sha256=zVDv7PsvFP68XEgFBKTh_2lX3irOlPMMNnPja6cVSSQ,372670
36
- omniopt2-7018.data/data/bin/.omniopt_plot_cpu_ram_usage.py,sha256=DbOAmdrbcZtsMnHJgHfeRngjtv6zX5J0axyua_dYezc,3932
37
- omniopt2-7018.data/data/bin/.omniopt_plot_general.py,sha256=ZERZJkvVOoJhi7SszmTF1Iln-_08_0Aki48u3LHUW-k,6809
38
- omniopt2-7018.data/data/bin/.omniopt_plot_gpu_usage.py,sha256=ojxVicwSoiyl7f3c-6lLuT2EpyPcSJKEcbp75LgDY2k,5107
39
- omniopt2-7018.data/data/bin/.omniopt_plot_kde.py,sha256=uRLWr72TDKvj3AqJ0O0AvkKZ1ok1O1QpXnbfQQdo0nA,6873
40
- omniopt2-7018.data/data/bin/.omniopt_plot_scatter.py,sha256=-amqmLR_YLCbHImLPh6gwVFv8iiVnXME544XHsRVCuw,8422
41
- omniopt2-7018.data/data/bin/.omniopt_plot_scatter_generation_method.py,sha256=rgKY_w1E516c9UucVaEvaKd8tCnoUq9xg-RrYSDzYEQ,4289
42
- omniopt2-7018.data/data/bin/.omniopt_plot_scatter_hex.py,sha256=w1L5gL6Bc_QudoSJi2lxEVvF17Apjjb3l2T-lXGnsUg,10279
43
- omniopt2-7018.data/data/bin/.omniopt_plot_time_and_exit_code.py,sha256=hC4RFDiJN_UImezFR6M5uVF-QKDqMDpq6R5DIg7dDDc,6463
44
- omniopt2-7018.data/data/bin/.omniopt_plot_trial_index_result.py,sha256=5DmqZAQO_PFmzdap-TIhSMAshRXpOHQacnHAtjwnzN4,4629
45
- omniopt2-7018.data/data/bin/.omniopt_plot_worker.py,sha256=VuluQq4W6KRR5RU08dxmDSFk5mbfDRkRJQFwwcLgAGw,4524
46
- omniopt2-7018.data/data/bin/.random_generator.py,sha256=ezBBUXpez_QaGdpCglMcJ0KZPdQP0XdX5gnLzO1xhwU,2987
47
- omniopt2-7018.data/data/bin/.shellscript_functions,sha256=7IjirQJpC7TCRPuRj1dO2W6A8h5cHt0dVzj6eH_2EiQ,14664
48
- omniopt2-7018.data/data/bin/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
49
- omniopt2-7018.data/data/bin/apt-dependencies.txt,sha256=X5tBB8ZLW9XaFtRh8B7C2pIkSoxNNawqioDr0QZAtuM,149
50
- omniopt2-7018.data/data/bin/omniopt,sha256=RIi0yZALrZGefiejun1fkDJ0LX95WymXd2xZFlglMsQ,48072
51
- omniopt2-7018.data/data/bin/omniopt_docker,sha256=LWVUeyvmA5AKqAHiH9jBUkR5uZ6AHMnSy0eET7mK6E4,3602
52
- omniopt2-7018.data/data/bin/omniopt_evaluate,sha256=9oBh0_ikCuIz_aJQZrN0j39NDiIDYoSvEFmSVIoFjJE,23842
53
- omniopt2-7018.data/data/bin/omniopt_plot,sha256=Z8ZR10p-ZRSgMeVPO-wVCJ8lk-LQtntjZ9Bk9RifCIs,13360
54
- omniopt2-7018.data/data/bin/omniopt_share,sha256=7g5I7YdoWcA6_GDwWwq0xPf23qiVc_VDrm9ySLH7SH0,14051
55
- omniopt2-7018.data/data/bin/requirements.txt,sha256=gj9r1kqJK9w1q6YJuViWlq7U0GZf5SOYVO1Ndcy24L0,280
56
- omniopt2-7018.data/data/bin/setup.py,sha256=g3uEqJHXhggXwgLYoxOjsXg9Z6IV1ubh-Og59AZ264Q,4648
57
- omniopt2-7018.data/data/bin/test_requirements.txt,sha256=dnCbKmKalrVzNZ_-iQWf1xCxcnDsdGuhbDAr9XlGm-U,477
58
- omniopt2-7018.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
59
- omniopt2.egg-info/PKG-INFO,sha256=14vb6FAPaOdj7WTw0MFL9GrVo451CmK0ZNaa70EYbdY,5792
32
+ omniopt2-7024.data/data/bin/.colorfunctions.sh,sha256=CDlgjwrsrHR_E6c-Qak5wZlotArXm-nf9sVvXePzGZA,1083
33
+ omniopt2-7024.data/data/bin/.general.sh,sha256=uyGMN8xNToQ0v50KoiYxm6jRmgf0orroOaodM_Nuq30,2107
34
+ omniopt2-7024.data/data/bin/.helpers.py,sha256=srrRn0QBzG8JpNbHAYG2k1rQY6JYrUrNdTj-tDMJSyg,30526
35
+ omniopt2-7024.data/data/bin/.omniopt.py,sha256=kHVrafvaD-9u3Zs9HlY-FDZqyNBtWLj-mbZa_5Dt7b0,372493
36
+ omniopt2-7024.data/data/bin/.omniopt_plot_cpu_ram_usage.py,sha256=DbOAmdrbcZtsMnHJgHfeRngjtv6zX5J0axyua_dYezc,3932
37
+ omniopt2-7024.data/data/bin/.omniopt_plot_general.py,sha256=ZERZJkvVOoJhi7SszmTF1Iln-_08_0Aki48u3LHUW-k,6809
38
+ omniopt2-7024.data/data/bin/.omniopt_plot_gpu_usage.py,sha256=ojxVicwSoiyl7f3c-6lLuT2EpyPcSJKEcbp75LgDY2k,5107
39
+ omniopt2-7024.data/data/bin/.omniopt_plot_kde.py,sha256=uRLWr72TDKvj3AqJ0O0AvkKZ1ok1O1QpXnbfQQdo0nA,6873
40
+ omniopt2-7024.data/data/bin/.omniopt_plot_scatter.py,sha256=-amqmLR_YLCbHImLPh6gwVFv8iiVnXME544XHsRVCuw,8422
41
+ omniopt2-7024.data/data/bin/.omniopt_plot_scatter_generation_method.py,sha256=rgKY_w1E516c9UucVaEvaKd8tCnoUq9xg-RrYSDzYEQ,4289
42
+ omniopt2-7024.data/data/bin/.omniopt_plot_scatter_hex.py,sha256=w1L5gL6Bc_QudoSJi2lxEVvF17Apjjb3l2T-lXGnsUg,10279
43
+ omniopt2-7024.data/data/bin/.omniopt_plot_time_and_exit_code.py,sha256=hC4RFDiJN_UImezFR6M5uVF-QKDqMDpq6R5DIg7dDDc,6463
44
+ omniopt2-7024.data/data/bin/.omniopt_plot_trial_index_result.py,sha256=5DmqZAQO_PFmzdap-TIhSMAshRXpOHQacnHAtjwnzN4,4629
45
+ omniopt2-7024.data/data/bin/.omniopt_plot_worker.py,sha256=VuluQq4W6KRR5RU08dxmDSFk5mbfDRkRJQFwwcLgAGw,4524
46
+ omniopt2-7024.data/data/bin/.random_generator.py,sha256=ezBBUXpez_QaGdpCglMcJ0KZPdQP0XdX5gnLzO1xhwU,2987
47
+ omniopt2-7024.data/data/bin/.shellscript_functions,sha256=7IjirQJpC7TCRPuRj1dO2W6A8h5cHt0dVzj6eH_2EiQ,14664
48
+ omniopt2-7024.data/data/bin/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
49
+ omniopt2-7024.data/data/bin/apt-dependencies.txt,sha256=X5tBB8ZLW9XaFtRh8B7C2pIkSoxNNawqioDr0QZAtuM,149
50
+ omniopt2-7024.data/data/bin/omniopt,sha256=RIi0yZALrZGefiejun1fkDJ0LX95WymXd2xZFlglMsQ,48072
51
+ omniopt2-7024.data/data/bin/omniopt_docker,sha256=LWVUeyvmA5AKqAHiH9jBUkR5uZ6AHMnSy0eET7mK6E4,3602
52
+ omniopt2-7024.data/data/bin/omniopt_evaluate,sha256=9oBh0_ikCuIz_aJQZrN0j39NDiIDYoSvEFmSVIoFjJE,23842
53
+ omniopt2-7024.data/data/bin/omniopt_plot,sha256=Z8ZR10p-ZRSgMeVPO-wVCJ8lk-LQtntjZ9Bk9RifCIs,13360
54
+ omniopt2-7024.data/data/bin/omniopt_share,sha256=7g5I7YdoWcA6_GDwWwq0xPf23qiVc_VDrm9ySLH7SH0,14051
55
+ omniopt2-7024.data/data/bin/requirements.txt,sha256=gj9r1kqJK9w1q6YJuViWlq7U0GZf5SOYVO1Ndcy24L0,280
56
+ omniopt2-7024.data/data/bin/setup.py,sha256=g3uEqJHXhggXwgLYoxOjsXg9Z6IV1ubh-Og59AZ264Q,4648
57
+ omniopt2-7024.data/data/bin/test_requirements.txt,sha256=dnCbKmKalrVzNZ_-iQWf1xCxcnDsdGuhbDAr9XlGm-U,477
58
+ omniopt2-7024.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
59
+ omniopt2.egg-info/PKG-INFO,sha256=KyBh2HUexv30teWUFc0SBiO0oxG0ExhBtRa4HvVJ5qw,5792
60
60
  omniopt2.egg-info/SOURCES.txt,sha256=kXBlYs2_3BE6tKUH1egGFa_9X5w8EQ5pm9dKgPEvdhY,770
61
61
  omniopt2.egg-info/dependency_links.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
62
62
  omniopt2.egg-info/requires.txt,sha256=rH_jC1LI0Ch8b5iWYh7EFq1ylyc9uswwZnyPZnlp9Qo,757
63
63
  omniopt2.egg-info/top_level.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
64
- omniopt2-7018.dist-info/METADATA,sha256=14vb6FAPaOdj7WTw0MFL9GrVo451CmK0ZNaa70EYbdY,5792
65
- omniopt2-7018.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
66
- omniopt2-7018.dist-info/top_level.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
67
- omniopt2-7018.dist-info/RECORD,,
64
+ omniopt2-7024.dist-info/METADATA,sha256=KyBh2HUexv30teWUFc0SBiO0oxG0ExhBtRa4HvVJ5qw,5792
65
+ omniopt2-7024.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
66
+ omniopt2-7024.dist-info/top_level.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
67
+ omniopt2-7024.dist-info/RECORD,,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: omniopt2
3
- Version: 7018
3
+ Version: 7024
4
4
  Summary: Automatic highly parallelized hyperparameter optimizer based on Ax/Botorch
5
5
  Home-page: https://scads.ai/transfer-2/verfuegbare-software-dienste-en/omniopt/
6
6
  Author: Norman Koch
pyproject.toml CHANGED
@@ -5,7 +5,7 @@ authors = [
5
5
  {email = "norman.koch@tu-dresden.de"},
6
6
  {name = "Norman Koch"}
7
7
  ]
8
- version = "7018"
8
+ version = "7024"
9
9
 
10
10
  readme = "README.md"
11
11
  dynamic = ["dependencies"]