omniopt2 7280__tar.gz → 7283__tar.gz

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 (39) hide show
  1. {omniopt2-7280 → omniopt2-7283}/.omniopt.py +14 -17
  2. {omniopt2-7280 → omniopt2-7283}/PKG-INFO +1 -1
  3. {omniopt2-7280 → omniopt2-7283}/omniopt2.egg-info/PKG-INFO +1 -1
  4. {omniopt2-7280 → omniopt2-7283}/pyproject.toml +1 -1
  5. {omniopt2-7280 → omniopt2-7283}/.colorfunctions.sh +0 -0
  6. {omniopt2-7280 → omniopt2-7283}/.dockerignore +0 -0
  7. {omniopt2-7280 → omniopt2-7283}/.general.sh +0 -0
  8. {omniopt2-7280 → omniopt2-7283}/.gitignore +0 -0
  9. {omniopt2-7280 → omniopt2-7283}/.helpers.py +0 -0
  10. {omniopt2-7280 → omniopt2-7283}/.omniopt_plot_cpu_ram_usage.py +0 -0
  11. {omniopt2-7280 → omniopt2-7283}/.omniopt_plot_general.py +0 -0
  12. {omniopt2-7280 → omniopt2-7283}/.omniopt_plot_gpu_usage.py +0 -0
  13. {omniopt2-7280 → omniopt2-7283}/.omniopt_plot_kde.py +0 -0
  14. {omniopt2-7280 → omniopt2-7283}/.omniopt_plot_scatter.py +0 -0
  15. {omniopt2-7280 → omniopt2-7283}/.omniopt_plot_scatter_generation_method.py +0 -0
  16. {omniopt2-7280 → omniopt2-7283}/.omniopt_plot_scatter_hex.py +0 -0
  17. {omniopt2-7280 → omniopt2-7283}/.omniopt_plot_time_and_exit_code.py +0 -0
  18. {omniopt2-7280 → omniopt2-7283}/.omniopt_plot_trial_index_result.py +0 -0
  19. {omniopt2-7280 → omniopt2-7283}/.omniopt_plot_worker.py +0 -0
  20. {omniopt2-7280 → omniopt2-7283}/.random_generator.py +0 -0
  21. {omniopt2-7280 → omniopt2-7283}/.shellscript_functions +0 -0
  22. {omniopt2-7280 → omniopt2-7283}/.tpe.py +0 -0
  23. {omniopt2-7280 → omniopt2-7283}/LICENSE +0 -0
  24. {omniopt2-7280 → omniopt2-7283}/MANIFEST.in +0 -0
  25. {omniopt2-7280 → omniopt2-7283}/README.md +0 -0
  26. {omniopt2-7280 → omniopt2-7283}/apt-dependencies.txt +0 -0
  27. {omniopt2-7280 → omniopt2-7283}/omniopt +0 -0
  28. {omniopt2-7280 → omniopt2-7283}/omniopt2.egg-info/SOURCES.txt +0 -0
  29. {omniopt2-7280 → omniopt2-7283}/omniopt2.egg-info/dependency_links.txt +0 -0
  30. {omniopt2-7280 → omniopt2-7283}/omniopt2.egg-info/requires.txt +0 -0
  31. {omniopt2-7280 → omniopt2-7283}/omniopt2.egg-info/top_level.txt +0 -0
  32. {omniopt2-7280 → omniopt2-7283}/omniopt_docker +0 -0
  33. {omniopt2-7280 → omniopt2-7283}/omniopt_evaluate +0 -0
  34. {omniopt2-7280 → omniopt2-7283}/omniopt_plot +0 -0
  35. {omniopt2-7280 → omniopt2-7283}/omniopt_share +0 -0
  36. {omniopt2-7280 → omniopt2-7283}/requirements.txt +0 -0
  37. {omniopt2-7280 → omniopt2-7283}/setup.cfg +0 -0
  38. {omniopt2-7280 → omniopt2-7283}/setup.py +0 -0
  39. {omniopt2-7280 → omniopt2-7283}/test_requirements.txt +0 -0
@@ -8770,9 +8770,8 @@ def set_orchestrator() -> None:
8770
8770
 
8771
8771
  @beartype
8772
8772
  def check_if_has_random_steps() -> None:
8773
- with console.status("[bold green]Checking if has random steps..."):
8774
- if (not args.continue_previous_job and "--continue" not in sys.argv) and (args.num_random_steps == 0 or not args.num_random_steps) and args.model not in ["EXTERNAL_GENERATOR", "SOBOL", "PSEUDORANDOM"]:
8775
- _fatal_error("You have no random steps set. This is only allowed in continued jobs. To start, you need either some random steps, or a continued run.", 233)
8773
+ if (not args.continue_previous_job and "--continue" not in sys.argv) and (args.num_random_steps == 0 or not args.num_random_steps) and args.model not in ["EXTERNAL_GENERATOR", "SOBOL", "PSEUDORANDOM"]:
8774
+ _fatal_error("You have no random steps set. This is only allowed in continued jobs. To start, you need either some random steps, or a continued run.", 233)
8776
8775
 
8777
8776
  @beartype
8778
8777
  def add_exclude_to_defective_nodes() -> None:
@@ -8791,15 +8790,14 @@ def check_max_eval(_max_eval: int) -> None:
8791
8790
 
8792
8791
  @beartype
8793
8792
  def parse_parameters() -> Any:
8794
- with console.status("[bold green]Parsing parameters..."):
8795
- experiment_parameters = None
8796
- cli_params_experiment_parameters = None
8797
- classic_params = None
8798
- if args.parameter:
8799
- experiment_parameters, classic_params = parse_experiment_parameters()
8800
- cli_params_experiment_parameters = experiment_parameters
8793
+ experiment_parameters = None
8794
+ cli_params_experiment_parameters = None
8795
+ classic_params = None
8796
+ if args.parameter:
8797
+ experiment_parameters, classic_params = parse_experiment_parameters()
8798
+ cli_params_experiment_parameters = experiment_parameters
8801
8799
 
8802
- return experiment_parameters, cli_params_experiment_parameters, classic_params
8800
+ return experiment_parameters, cli_params_experiment_parameters, classic_params
8803
8801
 
8804
8802
  @beartype
8805
8803
  def create_pareto_front_table(idxs: List[int], metric_x: str, metric_y: str) -> Table:
@@ -9885,13 +9883,12 @@ def main() -> None:
9885
9883
 
9886
9884
  initialize_ax_client()
9887
9885
 
9888
- with console.status("[bold green]Getting experiment parameters..."):
9889
- ax_client, experiment_parameters, experiment_args, gpu_string, gpu_color = get_experiment_parameters([
9890
- cli_params_experiment_parameters,
9891
- experiment_parameters,
9892
- ])
9886
+ ax_client, experiment_parameters, experiment_args, gpu_string, gpu_color = get_experiment_parameters([
9887
+ cli_params_experiment_parameters,
9888
+ experiment_parameters,
9889
+ ])
9893
9890
 
9894
- print_debug(f"experiment_parameters: {experiment_parameters}")
9891
+ print_debug(f"experiment_parameters: {experiment_parameters}")
9895
9892
 
9896
9893
  set_orchestrator()
9897
9894
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: omniopt2
3
- Version: 7280
3
+ Version: 7283
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
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: omniopt2
3
- Version: 7280
3
+ Version: 7283
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
@@ -5,7 +5,7 @@ authors = [
5
5
  {email = "norman.koch@tu-dresden.de"},
6
6
  {name = "Norman Koch"}
7
7
  ]
8
- version = "7280"
8
+ version = "7283"
9
9
 
10
10
  readme = "README.md"
11
11
  dynamic = ["dependencies"]
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
File without changes
File without changes