omniopt2 8178__py3-none-any.whl → 9171__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 (55) hide show
  1. .gitignore +2 -0
  2. .helpers.py +0 -9
  3. .omniopt.py +1717 -1151
  4. .omniopt_plot_scatter.py +1 -1
  5. .omniopt_plot_scatter_hex.py +1 -1
  6. .omniopt_plot_trial_index_result.py +1 -0
  7. .pareto.py +134 -0
  8. .shellscript_functions +24 -15
  9. .tests/pylint.rc +0 -4
  10. .tpe.py +4 -3
  11. README.md +1 -1
  12. omniopt +92 -55
  13. {omniopt2-8178.data → omniopt2-9171.data}/data/bin/.helpers.py +0 -9
  14. {omniopt2-8178.data → omniopt2-9171.data}/data/bin/.omniopt.py +1717 -1151
  15. {omniopt2-8178.data → omniopt2-9171.data}/data/bin/.omniopt_plot_scatter.py +1 -1
  16. {omniopt2-8178.data → omniopt2-9171.data}/data/bin/.omniopt_plot_scatter_hex.py +1 -1
  17. {omniopt2-8178.data → omniopt2-9171.data}/data/bin/.omniopt_plot_trial_index_result.py +1 -0
  18. omniopt2-9171.data/data/bin/.pareto.py +134 -0
  19. {omniopt2-8178.data → omniopt2-9171.data}/data/bin/.shellscript_functions +24 -15
  20. {omniopt2-8178.data → omniopt2-9171.data}/data/bin/.tpe.py +4 -3
  21. {omniopt2-8178.data → omniopt2-9171.data}/data/bin/omniopt +92 -55
  22. {omniopt2-8178.data → omniopt2-9171.data}/data/bin/omniopt_docker +60 -60
  23. {omniopt2-8178.data → omniopt2-9171.data}/data/bin/omniopt_plot +1 -1
  24. {omniopt2-8178.data → omniopt2-9171.data}/data/bin/pylint.rc +0 -4
  25. {omniopt2-8178.data → omniopt2-9171.data}/data/bin/requirements.txt +3 -4
  26. {omniopt2-8178.data → omniopt2-9171.data}/data/bin/test_requirements.txt +1 -0
  27. {omniopt2-8178.dist-info → omniopt2-9171.dist-info}/METADATA +6 -6
  28. omniopt2-9171.dist-info/RECORD +73 -0
  29. omniopt2.egg-info/PKG-INFO +6 -6
  30. omniopt2.egg-info/SOURCES.txt +1 -0
  31. omniopt2.egg-info/requires.txt +4 -4
  32. omniopt_docker +60 -60
  33. omniopt_plot +1 -1
  34. pyproject.toml +1 -1
  35. requirements.txt +3 -4
  36. test_requirements.txt +1 -0
  37. omniopt2-8178.dist-info/RECORD +0 -71
  38. {omniopt2-8178.data → omniopt2-9171.data}/data/bin/.colorfunctions.sh +0 -0
  39. {omniopt2-8178.data → omniopt2-9171.data}/data/bin/.general.sh +0 -0
  40. {omniopt2-8178.data → omniopt2-9171.data}/data/bin/.omniopt_plot_cpu_ram_usage.py +0 -0
  41. {omniopt2-8178.data → omniopt2-9171.data}/data/bin/.omniopt_plot_general.py +0 -0
  42. {omniopt2-8178.data → omniopt2-9171.data}/data/bin/.omniopt_plot_gpu_usage.py +0 -0
  43. {omniopt2-8178.data → omniopt2-9171.data}/data/bin/.omniopt_plot_kde.py +0 -0
  44. {omniopt2-8178.data → omniopt2-9171.data}/data/bin/.omniopt_plot_scatter_generation_method.py +0 -0
  45. {omniopt2-8178.data → omniopt2-9171.data}/data/bin/.omniopt_plot_time_and_exit_code.py +0 -0
  46. {omniopt2-8178.data → omniopt2-9171.data}/data/bin/.omniopt_plot_worker.py +0 -0
  47. {omniopt2-8178.data → omniopt2-9171.data}/data/bin/.random_generator.py +0 -0
  48. {omniopt2-8178.data → omniopt2-9171.data}/data/bin/LICENSE +0 -0
  49. {omniopt2-8178.data → omniopt2-9171.data}/data/bin/apt-dependencies.txt +0 -0
  50. {omniopt2-8178.data → omniopt2-9171.data}/data/bin/omniopt_evaluate +0 -0
  51. {omniopt2-8178.data → omniopt2-9171.data}/data/bin/omniopt_share +0 -0
  52. {omniopt2-8178.data → omniopt2-9171.data}/data/bin/setup.py +0 -0
  53. {omniopt2-8178.dist-info → omniopt2-9171.dist-info}/WHEEL +0 -0
  54. {omniopt2-8178.dist-info → omniopt2-9171.dist-info}/licenses/LICENSE +0 -0
  55. {omniopt2-8178.dist-info → omniopt2-9171.dist-info}/top_level.txt +0 -0
@@ -15,79 +15,79 @@ help_message() {
15
15
 
16
16
  function _mkdir {
17
17
  mkdir -p $* || {
18
- echo "mkdir -p $* failed. Exiting."
19
- exit 12
20
- }
18
+ echo "mkdir -p $* failed. Exiting."
19
+ exit 12
21
20
  }
21
+ }
22
22
 
23
- while [[ "$#" -gt 0 ]]; do
24
- case $1 in
25
- --help)
26
- help_message
27
- exit 0
28
- ;;
29
- esac
30
- shift
31
- done
32
-
33
- UPDATED_PACKAGES=0
34
-
35
- function apt_get_update () {
36
- if command -v apt >/dev/null; then
37
- if [[ $UPDATED_PACKAGES == 0 ]]; then
38
- sudo apt update || {
39
- echo "apt-get update failed. Are you online?"
40
- exit 2
41
- }
23
+ while [[ "$#" -gt 0 ]]; do
24
+ case $1 in
25
+ --help)
26
+ help_message
27
+ exit 0
28
+ ;;
29
+ esac
30
+ shift
31
+ done
32
+
33
+ UPDATED_PACKAGES=0
34
+
35
+ function apt_get_update () {
36
+ if command -v apt >/dev/null; then
37
+ if [[ $UPDATED_PACKAGES == 0 ]]; then
38
+ sudo apt update || {
39
+ echo "apt-get update failed. Are you online?"
40
+ exit 2
41
+ }
42
42
 
43
- UPDATED_PACKAGES=1
44
- fi
45
- else
46
- echo "apt is not installed. You need to be on debian for auto-installing packages. Please install it manually."
47
- exit 10
43
+ UPDATED_PACKAGES=1
48
44
  fi
49
- }
45
+ else
46
+ echo "apt is not installed. You need to be on debian for auto-installing packages. Please install it manually."
47
+ exit 10
48
+ fi
49
+ }
50
50
 
51
- install_if_missing() {
52
- if ! command -v "$1" &>/dev/null; then
53
- apt_get_update
51
+ install_if_missing() {
52
+ if ! command -v "$1" &>/dev/null; then
53
+ apt_get_update
54
54
 
55
- [[ "$2" == "docker" ]] && curl -fsSL "https://get.docker.com" | bash || sudo apt-get install -y "$1" || {
56
- echo "Failed to install $1"
57
- exit $3
58
- }
59
- fi
60
- }
55
+ [[ "$2" == "docker" ]] && curl -fsSL "https://get.docker.com" | bash || sudo apt-get install -y "$1" || {
56
+ echo "Failed to install $1"
57
+ exit $3
58
+ }
59
+ fi
60
+ }
61
61
 
62
- install_if_missing docker docker 2
63
- install_if_missing docker-compose "" 2
64
- install_if_missing wget "" 2
65
- install_if_missing git "" 2
66
- install_if_missing docker "" 2
62
+ install_if_missing docker docker 2
63
+ install_if_missing docker-compose "" 2
64
+ install_if_missing wget "" 2
65
+ install_if_missing git "" 2
66
+ install_if_missing docker "" 2
67
67
 
68
- if ! groups | grep -q '\bdocker\b'; then
69
- install_if_missing sudo "" 2
70
- fi
71
- [[ -n $DISPLAY ]] && install_if_missing xhost "" 2
68
+ if ! groups | grep -q '\bdocker\b'; then
69
+ install_if_missing sudo "" 2
70
+ fi
71
+ [[ -n $DISPLAY ]] && install_if_missing xhost "" 2
72
72
 
73
- echo "=== Current git hash before auto-pulling ==="
74
- git rev-parse HEAD
75
- echo "=== Current git hash before auto-pulling ==="
73
+ echo "=== Current git hash before auto-pulling ==="
74
+ git rev-parse HEAD
75
+ echo "=== Current git hash before auto-pulling ==="
76
76
 
77
- git pull
77
+ git pull
78
78
 
79
- _mkdir runs
80
- _mkdir logs
79
+ _mkdir runs
80
+ _mkdir logs
81
81
 
82
- git rev-parse HEAD > git_hash
82
+ git rev-parse HEAD > git_hash
83
83
 
84
- if groups | grep -q '\bdocker\b'; then
85
- DOCKER_COMPOSE_CMD="docker-compose"
86
- DOCKER_CMD="docker"
87
- else
88
- DOCKER_COMPOSE_CMD="sudo docker-compose"
89
- DOCKER_CMD="sudo docker"
90
- fi
84
+ if groups | grep -q '\bdocker\b'; then
85
+ DOCKER_COMPOSE_CMD="docker-compose"
86
+ DOCKER_CMD="docker"
87
+ else
88
+ DOCKER_COMPOSE_CMD="sudo docker-compose"
89
+ DOCKER_CMD="sudo docker"
90
+ fi
91
91
 
92
92
  $DOCKER_COMPOSE_CMD build --build-arg GetMyUsername=$(whoami) || {
93
93
  echo "Failed composing container"
@@ -103,7 +103,7 @@
103
103
  echo "$closest"
104
104
  }
105
105
 
106
- if [[ -n $PRINT_SEPERATOR ]]; then # for tests, so that things are properly visually seperated
106
+ if [[ -n $PRINT_SEPARATOR ]]; then # for tests, so that things are properly visually separated
107
107
  echo ""
108
108
  echo "========================================================================"
109
109
  echo ""
@@ -103,10 +103,6 @@ recursive=no
103
103
  # source root.
104
104
  source-roots=
105
105
 
106
- # When enabled, pylint would attempt to guess common misconfiguration and emit
107
- # user-friendly hints instead of false-positive error messages.
108
- suggestion-mode=yes
109
-
110
106
  # Allow loading of arbitrary C extensions. Extensions are imported into the
111
107
  # active Python interpreter and may run arbitrary code.
112
108
  unsafe-load-any-extension=no
@@ -1,19 +1,20 @@
1
1
  mypydie
2
+ art
3
+ beartype
2
4
  sqlalchemy
3
5
  setuptools
4
6
  wheel
5
7
  multidict
6
8
  numpy
7
9
  python-dateutil
10
+ tqdm
8
11
  ax-platform
9
- art
10
12
  tzlocal
11
13
  Rich
12
14
  sixel
13
15
  scikit-learn
14
16
  submitit
15
17
  matplotlib
16
- tqdm
17
18
  seaborn
18
19
  pytz
19
20
  psutil
@@ -24,12 +25,10 @@ emoji
24
25
  html5lib
25
26
  lxml
26
27
  toml
27
- beartype
28
28
  pyyaml
29
29
  pyspellchecker
30
30
  pyfiglet
31
31
  setuptools
32
32
  pyright
33
- qrcode
34
33
  tabulate
35
34
  optuna
@@ -51,3 +51,4 @@ setuptools
51
51
  pyright
52
52
  pymarkdownlnt
53
53
  types-qrcode
54
+ mayhemmonkey
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: omniopt2
3
- Version: 8178
3
+ Version: 9171
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
@@ -9,21 +9,22 @@ Platform: Linux
9
9
  Description-Content-Type: text/markdown
10
10
  License-File: LICENSE
11
11
  Requires-Dist: mypydie
12
+ Requires-Dist: art
13
+ Requires-Dist: beartype
12
14
  Requires-Dist: sqlalchemy
13
15
  Requires-Dist: setuptools
14
16
  Requires-Dist: wheel
15
17
  Requires-Dist: multidict
16
18
  Requires-Dist: numpy
17
19
  Requires-Dist: python-dateutil
20
+ Requires-Dist: tqdm
18
21
  Requires-Dist: ax-platform
19
- Requires-Dist: art
20
22
  Requires-Dist: tzlocal
21
23
  Requires-Dist: Rich
22
24
  Requires-Dist: sixel
23
25
  Requires-Dist: scikit-learn
24
26
  Requires-Dist: submitit
25
27
  Requires-Dist: matplotlib
26
- Requires-Dist: tqdm
27
28
  Requires-Dist: seaborn
28
29
  Requires-Dist: pytz
29
30
  Requires-Dist: psutil
@@ -34,13 +35,11 @@ Requires-Dist: emoji
34
35
  Requires-Dist: html5lib
35
36
  Requires-Dist: lxml
36
37
  Requires-Dist: toml
37
- Requires-Dist: beartype
38
38
  Requires-Dist: pyyaml
39
39
  Requires-Dist: pyspellchecker
40
40
  Requires-Dist: pyfiglet
41
41
  Requires-Dist: setuptools
42
42
  Requires-Dist: pyright
43
- Requires-Dist: qrcode
44
43
  Requires-Dist: tabulate
45
44
  Requires-Dist: optuna
46
45
  Requires-Dist: sqlalchemy
@@ -96,6 +95,7 @@ Requires-Dist: setuptools
96
95
  Requires-Dist: pyright
97
96
  Requires-Dist: pymarkdownlnt
98
97
  Requires-Dist: types-qrcode
98
+ Requires-Dist: mayhemmonkey
99
99
  Dynamic: home-page
100
100
  Dynamic: license-file
101
101
  Dynamic: platform
@@ -159,7 +159,7 @@ for more details.
159
159
 
160
160
  ## Install from pypi
161
161
 
162
- This may not use the bleeding-edge version, but if you get the version from here it means, the test suite has completety tested it properly.
162
+ This may not use the bleeding-edge version, but if you get the version from here it means, the test suite has completely tested it properly.
163
163
 
164
164
  ```command
165
165
  pip3 install omniopt2
@@ -0,0 +1,73 @@
1
+ .colorfunctions.sh,sha256=xxc08V3Fh_0Je20fkJMRO14u9VCSvMyOiMaDfioEyCY,1098
2
+ .dockerignore,sha256=vtgV4tvVZdmusf1z7MYscSBo_UTtHMG6T7Knb4llBvo,11
3
+ .general.sh,sha256=uyGMN8xNToQ0v50KoiYxm6jRmgf0orroOaodM_Nuq30,2107
4
+ .gitignore,sha256=3A7BlH7vV-liv6jRnjoLhPFCBWO_b-mxjTPXiNIQdQs,3802
5
+ .helpers.py,sha256=4YPKu3HBjV9SWUhOGlnmBPLtvn2ofbUPqwQrDIPegmM,30848
6
+ .omniopt.py,sha256=LyMKmfkiZGxgjd8PzNYjQAb7Ep9VBZM5Mtj2TxcEzQ4,449684
7
+ .omniopt_plot_cpu_ram_usage.py,sha256=DbOAmdrbcZtsMnHJgHfeRngjtv6zX5J0axyua_dYezc,3932
8
+ .omniopt_plot_general.py,sha256=3iy-bPef8I5rTB3KRz-TuleMdgKDmVZ6c8LuNQhNwu0,6810
9
+ .omniopt_plot_gpu_usage.py,sha256=ojxVicwSoiyl7f3c-6lLuT2EpyPcSJKEcbp75LgDY2k,5107
10
+ .omniopt_plot_kde.py,sha256=uRLWr72TDKvj3AqJ0O0AvkKZ1ok1O1QpXnbfQQdo0nA,6873
11
+ .omniopt_plot_scatter.py,sha256=1ylU36QPkcbM71VbDm5dJVkaY4ARPp1ph5pcJmIEcLs,8391
12
+ .omniopt_plot_scatter_generation_method.py,sha256=rgKY_w1E516c9UucVaEvaKd8tCnoUq9xg-RrYSDzYEQ,4289
13
+ .omniopt_plot_scatter_hex.py,sha256=FFMGSahG7LtVR8Bw8g6JmLq1-pIHLlLxrWeDCsaOT04,10267
14
+ .omniopt_plot_time_and_exit_code.py,sha256=WUyl2uI59wsC1eSX_5uJHOrqcF-s5cUDIEu8u3IFMLU,6462
15
+ .omniopt_plot_trial_index_result.py,sha256=Xlo_dYTQNnxPhYakmgMM58CCcW9gUoXZ3gLap9RScTY,4578
16
+ .omniopt_plot_worker.py,sha256=VuluQq4W6KRR5RU08dxmDSFk5mbfDRkRJQFwwcLgAGw,4524
17
+ .pareto.py,sha256=nCY2f--PKA30IHfMdSoznmji8a0ervFwBbc4pXB-Nl0,4958
18
+ .random_generator.py,sha256=ezBBUXpez_QaGdpCglMcJ0KZPdQP0XdX5gnLzO1xhwU,2987
19
+ .shellscript_functions,sha256=cJNl3LAECV1xjPs4s9JqBc8NU6Ovl0K9MdJmk0UrXXc,13982
20
+ .tpe.py,sha256=93yjviAtxPRYUCpSIShW_H3QQ5JPNcnXNjF0g8zc7Wc,6766
21
+ LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
22
+ MANIFEST.in,sha256=L3QBXyL1TtyWxbAPsfjZdCfpeBrRuI5MSgdnvwdQ22Q,24
23
+ README.md,sha256=IiW7zST3uhPj-bIaUpX13h2txBwBrCfSzShpoMzaeSE,3221
24
+ apt-dependencies.txt,sha256=X5tBB8ZLW9XaFtRh8B7C2pIkSoxNNawqioDr0QZAtuM,149
25
+ omniopt,sha256=fodgwnCFcktIFM9BjFO7fPz0oZpX08b-sZqMMK0Q2-k,51620
26
+ omniopt_docker,sha256=XyEGZ71l-tUlAYUluVF39fGO3NLDRa8UyrwxmAsXWNI,3542
27
+ omniopt_evaluate,sha256=9oBh0_ikCuIz_aJQZrN0j39NDiIDYoSvEFmSVIoFjJE,23842
28
+ omniopt_plot,sha256=Kb7XjhyIAFzKrGIei0lpRmJ4Yw_pCXDvj_tPvshb_bs,13696
29
+ omniopt_share,sha256=2KZcTjN_7vcxNjb4sLLiWgUc38pl2-6-Qwmgq6_nTb0,13856
30
+ pyproject.toml,sha256=VBrdNjCjlC1mI0LO5VYIGZ4DGQPHzpiN9_54nhSQn2o,397
31
+ requirements.txt,sha256=DI0EK_RRc9z_RdmQhRnJLjKLh4tS4mfw9g0NoSgVP6c,292
32
+ setup.cfg,sha256=HEc8uu6NpfxG5_AVh5SvXOpEFMNKPPPxgMIAH144vT4,38
33
+ test_requirements.txt,sha256=Gr7_e1nM5bejuuIDwhxJ2o2mr-S5PO71FNTucT-gyiI,500
34
+ .tests/pylint.rc,sha256=w77rayiyvpPxZYrmZ446S0_rLgBEbsR9q6E_W_skQHs,22467
35
+ omniopt2-9171.data/data/bin/.colorfunctions.sh,sha256=xxc08V3Fh_0Je20fkJMRO14u9VCSvMyOiMaDfioEyCY,1098
36
+ omniopt2-9171.data/data/bin/.general.sh,sha256=uyGMN8xNToQ0v50KoiYxm6jRmgf0orroOaodM_Nuq30,2107
37
+ omniopt2-9171.data/data/bin/.helpers.py,sha256=4YPKu3HBjV9SWUhOGlnmBPLtvn2ofbUPqwQrDIPegmM,30848
38
+ omniopt2-9171.data/data/bin/.omniopt.py,sha256=LyMKmfkiZGxgjd8PzNYjQAb7Ep9VBZM5Mtj2TxcEzQ4,449684
39
+ omniopt2-9171.data/data/bin/.omniopt_plot_cpu_ram_usage.py,sha256=DbOAmdrbcZtsMnHJgHfeRngjtv6zX5J0axyua_dYezc,3932
40
+ omniopt2-9171.data/data/bin/.omniopt_plot_general.py,sha256=3iy-bPef8I5rTB3KRz-TuleMdgKDmVZ6c8LuNQhNwu0,6810
41
+ omniopt2-9171.data/data/bin/.omniopt_plot_gpu_usage.py,sha256=ojxVicwSoiyl7f3c-6lLuT2EpyPcSJKEcbp75LgDY2k,5107
42
+ omniopt2-9171.data/data/bin/.omniopt_plot_kde.py,sha256=uRLWr72TDKvj3AqJ0O0AvkKZ1ok1O1QpXnbfQQdo0nA,6873
43
+ omniopt2-9171.data/data/bin/.omniopt_plot_scatter.py,sha256=1ylU36QPkcbM71VbDm5dJVkaY4ARPp1ph5pcJmIEcLs,8391
44
+ omniopt2-9171.data/data/bin/.omniopt_plot_scatter_generation_method.py,sha256=rgKY_w1E516c9UucVaEvaKd8tCnoUq9xg-RrYSDzYEQ,4289
45
+ omniopt2-9171.data/data/bin/.omniopt_plot_scatter_hex.py,sha256=FFMGSahG7LtVR8Bw8g6JmLq1-pIHLlLxrWeDCsaOT04,10267
46
+ omniopt2-9171.data/data/bin/.omniopt_plot_time_and_exit_code.py,sha256=WUyl2uI59wsC1eSX_5uJHOrqcF-s5cUDIEu8u3IFMLU,6462
47
+ omniopt2-9171.data/data/bin/.omniopt_plot_trial_index_result.py,sha256=Xlo_dYTQNnxPhYakmgMM58CCcW9gUoXZ3gLap9RScTY,4578
48
+ omniopt2-9171.data/data/bin/.omniopt_plot_worker.py,sha256=VuluQq4W6KRR5RU08dxmDSFk5mbfDRkRJQFwwcLgAGw,4524
49
+ omniopt2-9171.data/data/bin/.pareto.py,sha256=nCY2f--PKA30IHfMdSoznmji8a0ervFwBbc4pXB-Nl0,4958
50
+ omniopt2-9171.data/data/bin/.random_generator.py,sha256=ezBBUXpez_QaGdpCglMcJ0KZPdQP0XdX5gnLzO1xhwU,2987
51
+ omniopt2-9171.data/data/bin/.shellscript_functions,sha256=cJNl3LAECV1xjPs4s9JqBc8NU6Ovl0K9MdJmk0UrXXc,13982
52
+ omniopt2-9171.data/data/bin/.tpe.py,sha256=93yjviAtxPRYUCpSIShW_H3QQ5JPNcnXNjF0g8zc7Wc,6766
53
+ omniopt2-9171.data/data/bin/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
54
+ omniopt2-9171.data/data/bin/apt-dependencies.txt,sha256=X5tBB8ZLW9XaFtRh8B7C2pIkSoxNNawqioDr0QZAtuM,149
55
+ omniopt2-9171.data/data/bin/omniopt,sha256=fodgwnCFcktIFM9BjFO7fPz0oZpX08b-sZqMMK0Q2-k,51620
56
+ omniopt2-9171.data/data/bin/omniopt_docker,sha256=XyEGZ71l-tUlAYUluVF39fGO3NLDRa8UyrwxmAsXWNI,3542
57
+ omniopt2-9171.data/data/bin/omniopt_evaluate,sha256=9oBh0_ikCuIz_aJQZrN0j39NDiIDYoSvEFmSVIoFjJE,23842
58
+ omniopt2-9171.data/data/bin/omniopt_plot,sha256=Kb7XjhyIAFzKrGIei0lpRmJ4Yw_pCXDvj_tPvshb_bs,13696
59
+ omniopt2-9171.data/data/bin/omniopt_share,sha256=2KZcTjN_7vcxNjb4sLLiWgUc38pl2-6-Qwmgq6_nTb0,13856
60
+ omniopt2-9171.data/data/bin/pylint.rc,sha256=w77rayiyvpPxZYrmZ446S0_rLgBEbsR9q6E_W_skQHs,22467
61
+ omniopt2-9171.data/data/bin/requirements.txt,sha256=DI0EK_RRc9z_RdmQhRnJLjKLh4tS4mfw9g0NoSgVP6c,292
62
+ omniopt2-9171.data/data/bin/setup.py,sha256=zg7k4jeHXEdaGWGeB1mPC14fFj-hqz1vNimnU0JcMyk,4632
63
+ omniopt2-9171.data/data/bin/test_requirements.txt,sha256=Gr7_e1nM5bejuuIDwhxJ2o2mr-S5PO71FNTucT-gyiI,500
64
+ omniopt2-9171.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
65
+ omniopt2.egg-info/PKG-INFO,sha256=FEVarbwbJ8xZB39dgzXOiQyCeA-82we9RL-Z510bgkc,5746
66
+ omniopt2.egg-info/SOURCES.txt,sha256=Tzt6zbjxFXehEY719n0EVE6xjUpIPOIrRxU-YO9KvWc,806
67
+ omniopt2.egg-info/dependency_links.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
68
+ omniopt2.egg-info/requires.txt,sha256=Zpf7X7S-HCYsk_aIjO3qx0y21d8MisVivFyt7yD_Oe4,792
69
+ omniopt2.egg-info/top_level.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
70
+ omniopt2-9171.dist-info/METADATA,sha256=FEVarbwbJ8xZB39dgzXOiQyCeA-82we9RL-Z510bgkc,5746
71
+ omniopt2-9171.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
72
+ omniopt2-9171.dist-info/top_level.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
73
+ omniopt2-9171.dist-info/RECORD,,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: omniopt2
3
- Version: 8178
3
+ Version: 9171
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
@@ -9,21 +9,22 @@ Platform: Linux
9
9
  Description-Content-Type: text/markdown
10
10
  License-File: LICENSE
11
11
  Requires-Dist: mypydie
12
+ Requires-Dist: art
13
+ Requires-Dist: beartype
12
14
  Requires-Dist: sqlalchemy
13
15
  Requires-Dist: setuptools
14
16
  Requires-Dist: wheel
15
17
  Requires-Dist: multidict
16
18
  Requires-Dist: numpy
17
19
  Requires-Dist: python-dateutil
20
+ Requires-Dist: tqdm
18
21
  Requires-Dist: ax-platform
19
- Requires-Dist: art
20
22
  Requires-Dist: tzlocal
21
23
  Requires-Dist: Rich
22
24
  Requires-Dist: sixel
23
25
  Requires-Dist: scikit-learn
24
26
  Requires-Dist: submitit
25
27
  Requires-Dist: matplotlib
26
- Requires-Dist: tqdm
27
28
  Requires-Dist: seaborn
28
29
  Requires-Dist: pytz
29
30
  Requires-Dist: psutil
@@ -34,13 +35,11 @@ Requires-Dist: emoji
34
35
  Requires-Dist: html5lib
35
36
  Requires-Dist: lxml
36
37
  Requires-Dist: toml
37
- Requires-Dist: beartype
38
38
  Requires-Dist: pyyaml
39
39
  Requires-Dist: pyspellchecker
40
40
  Requires-Dist: pyfiglet
41
41
  Requires-Dist: setuptools
42
42
  Requires-Dist: pyright
43
- Requires-Dist: qrcode
44
43
  Requires-Dist: tabulate
45
44
  Requires-Dist: optuna
46
45
  Requires-Dist: sqlalchemy
@@ -96,6 +95,7 @@ Requires-Dist: setuptools
96
95
  Requires-Dist: pyright
97
96
  Requires-Dist: pymarkdownlnt
98
97
  Requires-Dist: types-qrcode
98
+ Requires-Dist: mayhemmonkey
99
99
  Dynamic: home-page
100
100
  Dynamic: license-file
101
101
  Dynamic: platform
@@ -159,7 +159,7 @@ for more details.
159
159
 
160
160
  ## Install from pypi
161
161
 
162
- This may not use the bleeding-edge version, but if you get the version from here it means, the test suite has completety tested it properly.
162
+ This may not use the bleeding-edge version, but if you get the version from here it means, the test suite has completely tested it properly.
163
163
 
164
164
  ```command
165
165
  pip3 install omniopt2
@@ -14,6 +14,7 @@
14
14
  .omniopt_plot_time_and_exit_code.py
15
15
  .omniopt_plot_trial_index_result.py
16
16
  .omniopt_plot_worker.py
17
+ .pareto.py
17
18
  .random_generator.py
18
19
  .shellscript_functions
19
20
  .tpe.py
@@ -1,19 +1,20 @@
1
1
  mypydie
2
+ art
3
+ beartype
2
4
  sqlalchemy
3
5
  setuptools
4
6
  wheel
5
7
  multidict
6
8
  numpy
7
9
  python-dateutil
10
+ tqdm
8
11
  ax-platform
9
- art
10
12
  tzlocal
11
13
  Rich
12
14
  sixel
13
15
  scikit-learn
14
16
  submitit
15
17
  matplotlib
16
- tqdm
17
18
  seaborn
18
19
  pytz
19
20
  psutil
@@ -24,13 +25,11 @@ emoji
24
25
  html5lib
25
26
  lxml
26
27
  toml
27
- beartype
28
28
  pyyaml
29
29
  pyspellchecker
30
30
  pyfiglet
31
31
  setuptools
32
32
  pyright
33
- qrcode
34
33
  tabulate
35
34
  optuna
36
35
  sqlalchemy
@@ -86,3 +85,4 @@ setuptools
86
85
  pyright
87
86
  pymarkdownlnt
88
87
  types-qrcode
88
+ mayhemmonkey
omniopt_docker CHANGED
@@ -15,79 +15,79 @@ help_message() {
15
15
 
16
16
  function _mkdir {
17
17
  mkdir -p $* || {
18
- echo "mkdir -p $* failed. Exiting."
19
- exit 12
20
- }
18
+ echo "mkdir -p $* failed. Exiting."
19
+ exit 12
21
20
  }
21
+ }
22
22
 
23
- while [[ "$#" -gt 0 ]]; do
24
- case $1 in
25
- --help)
26
- help_message
27
- exit 0
28
- ;;
29
- esac
30
- shift
31
- done
32
-
33
- UPDATED_PACKAGES=0
34
-
35
- function apt_get_update () {
36
- if command -v apt >/dev/null; then
37
- if [[ $UPDATED_PACKAGES == 0 ]]; then
38
- sudo apt update || {
39
- echo "apt-get update failed. Are you online?"
40
- exit 2
41
- }
23
+ while [[ "$#" -gt 0 ]]; do
24
+ case $1 in
25
+ --help)
26
+ help_message
27
+ exit 0
28
+ ;;
29
+ esac
30
+ shift
31
+ done
32
+
33
+ UPDATED_PACKAGES=0
34
+
35
+ function apt_get_update () {
36
+ if command -v apt >/dev/null; then
37
+ if [[ $UPDATED_PACKAGES == 0 ]]; then
38
+ sudo apt update || {
39
+ echo "apt-get update failed. Are you online?"
40
+ exit 2
41
+ }
42
42
 
43
- UPDATED_PACKAGES=1
44
- fi
45
- else
46
- echo "apt is not installed. You need to be on debian for auto-installing packages. Please install it manually."
47
- exit 10
43
+ UPDATED_PACKAGES=1
48
44
  fi
49
- }
45
+ else
46
+ echo "apt is not installed. You need to be on debian for auto-installing packages. Please install it manually."
47
+ exit 10
48
+ fi
49
+ }
50
50
 
51
- install_if_missing() {
52
- if ! command -v "$1" &>/dev/null; then
53
- apt_get_update
51
+ install_if_missing() {
52
+ if ! command -v "$1" &>/dev/null; then
53
+ apt_get_update
54
54
 
55
- [[ "$2" == "docker" ]] && curl -fsSL "https://get.docker.com" | bash || sudo apt-get install -y "$1" || {
56
- echo "Failed to install $1"
57
- exit $3
58
- }
59
- fi
60
- }
55
+ [[ "$2" == "docker" ]] && curl -fsSL "https://get.docker.com" | bash || sudo apt-get install -y "$1" || {
56
+ echo "Failed to install $1"
57
+ exit $3
58
+ }
59
+ fi
60
+ }
61
61
 
62
- install_if_missing docker docker 2
63
- install_if_missing docker-compose "" 2
64
- install_if_missing wget "" 2
65
- install_if_missing git "" 2
66
- install_if_missing docker "" 2
62
+ install_if_missing docker docker 2
63
+ install_if_missing docker-compose "" 2
64
+ install_if_missing wget "" 2
65
+ install_if_missing git "" 2
66
+ install_if_missing docker "" 2
67
67
 
68
- if ! groups | grep -q '\bdocker\b'; then
69
- install_if_missing sudo "" 2
70
- fi
71
- [[ -n $DISPLAY ]] && install_if_missing xhost "" 2
68
+ if ! groups | grep -q '\bdocker\b'; then
69
+ install_if_missing sudo "" 2
70
+ fi
71
+ [[ -n $DISPLAY ]] && install_if_missing xhost "" 2
72
72
 
73
- echo "=== Current git hash before auto-pulling ==="
74
- git rev-parse HEAD
75
- echo "=== Current git hash before auto-pulling ==="
73
+ echo "=== Current git hash before auto-pulling ==="
74
+ git rev-parse HEAD
75
+ echo "=== Current git hash before auto-pulling ==="
76
76
 
77
- git pull
77
+ git pull
78
78
 
79
- _mkdir runs
80
- _mkdir logs
79
+ _mkdir runs
80
+ _mkdir logs
81
81
 
82
- git rev-parse HEAD > git_hash
82
+ git rev-parse HEAD > git_hash
83
83
 
84
- if groups | grep -q '\bdocker\b'; then
85
- DOCKER_COMPOSE_CMD="docker-compose"
86
- DOCKER_CMD="docker"
87
- else
88
- DOCKER_COMPOSE_CMD="sudo docker-compose"
89
- DOCKER_CMD="sudo docker"
90
- fi
84
+ if groups | grep -q '\bdocker\b'; then
85
+ DOCKER_COMPOSE_CMD="docker-compose"
86
+ DOCKER_CMD="docker"
87
+ else
88
+ DOCKER_COMPOSE_CMD="sudo docker-compose"
89
+ DOCKER_CMD="sudo docker"
90
+ fi
91
91
 
92
92
  $DOCKER_COMPOSE_CMD build --build-arg GetMyUsername=$(whoami) || {
93
93
  echo "Failed composing container"
omniopt_plot CHANGED
@@ -103,7 +103,7 @@
103
103
  echo "$closest"
104
104
  }
105
105
 
106
- if [[ -n $PRINT_SEPERATOR ]]; then # for tests, so that things are properly visually seperated
106
+ if [[ -n $PRINT_SEPARATOR ]]; then # for tests, so that things are properly visually separated
107
107
  echo ""
108
108
  echo "========================================================================"
109
109
  echo ""
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 = "8178"
8
+ version = "9171"
9
9
 
10
10
  readme = "README.md"
11
11
  dynamic = ["dependencies"]
requirements.txt CHANGED
@@ -1,19 +1,20 @@
1
1
  mypydie
2
+ art
3
+ beartype
2
4
  sqlalchemy
3
5
  setuptools
4
6
  wheel
5
7
  multidict
6
8
  numpy
7
9
  python-dateutil
10
+ tqdm
8
11
  ax-platform
9
- art
10
12
  tzlocal
11
13
  Rich
12
14
  sixel
13
15
  scikit-learn
14
16
  submitit
15
17
  matplotlib
16
- tqdm
17
18
  seaborn
18
19
  pytz
19
20
  psutil
@@ -24,12 +25,10 @@ emoji
24
25
  html5lib
25
26
  lxml
26
27
  toml
27
- beartype
28
28
  pyyaml
29
29
  pyspellchecker
30
30
  pyfiglet
31
31
  setuptools
32
32
  pyright
33
- qrcode
34
33
  tabulate
35
34
  optuna
test_requirements.txt CHANGED
@@ -51,3 +51,4 @@ setuptools
51
51
  pyright
52
52
  pymarkdownlnt
53
53
  types-qrcode
54
+ mayhemmonkey