omniopt2 6983__py3-none-any.whl → 7006__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 +10 -1
- README.md +13 -3
- {omniopt2-6983.data → omniopt2-7006.data}/data/bin/.omniopt.py +10 -1
- {omniopt2-6983.data → omniopt2-7006.data}/data/bin/requirements.txt +1 -0
- {omniopt2-6983.dist-info → omniopt2-7006.dist-info}/METADATA +15 -4
- {omniopt2-6983.dist-info → omniopt2-7006.dist-info}/RECORD +37 -37
- omniopt2.egg-info/PKG-INFO +15 -4
- omniopt2.egg-info/requires.txt +1 -0
- pyproject.toml +1 -1
- requirements.txt +1 -0
- {omniopt2-6983.data → omniopt2-7006.data}/data/bin/.colorfunctions.sh +0 -0
- {omniopt2-6983.data → omniopt2-7006.data}/data/bin/.general.sh +0 -0
- {omniopt2-6983.data → omniopt2-7006.data}/data/bin/.helpers.py +0 -0
- {omniopt2-6983.data → omniopt2-7006.data}/data/bin/.omniopt_plot_cpu_ram_usage.py +0 -0
- {omniopt2-6983.data → omniopt2-7006.data}/data/bin/.omniopt_plot_general.py +0 -0
- {omniopt2-6983.data → omniopt2-7006.data}/data/bin/.omniopt_plot_gpu_usage.py +0 -0
- {omniopt2-6983.data → omniopt2-7006.data}/data/bin/.omniopt_plot_kde.py +0 -0
- {omniopt2-6983.data → omniopt2-7006.data}/data/bin/.omniopt_plot_scatter.py +0 -0
- {omniopt2-6983.data → omniopt2-7006.data}/data/bin/.omniopt_plot_scatter_generation_method.py +0 -0
- {omniopt2-6983.data → omniopt2-7006.data}/data/bin/.omniopt_plot_scatter_hex.py +0 -0
- {omniopt2-6983.data → omniopt2-7006.data}/data/bin/.omniopt_plot_time_and_exit_code.py +0 -0
- {omniopt2-6983.data → omniopt2-7006.data}/data/bin/.omniopt_plot_trial_index_result.py +0 -0
- {omniopt2-6983.data → omniopt2-7006.data}/data/bin/.omniopt_plot_worker.py +0 -0
- {omniopt2-6983.data → omniopt2-7006.data}/data/bin/.random_generator.py +0 -0
- {omniopt2-6983.data → omniopt2-7006.data}/data/bin/.shellscript_functions +0 -0
- {omniopt2-6983.data → omniopt2-7006.data}/data/bin/LICENSE +0 -0
- {omniopt2-6983.data → omniopt2-7006.data}/data/bin/apt-dependencies.txt +0 -0
- {omniopt2-6983.data → omniopt2-7006.data}/data/bin/omniopt +0 -0
- {omniopt2-6983.data → omniopt2-7006.data}/data/bin/omniopt_docker +0 -0
- {omniopt2-6983.data → omniopt2-7006.data}/data/bin/omniopt_evaluate +0 -0
- {omniopt2-6983.data → omniopt2-7006.data}/data/bin/omniopt_plot +0 -0
- {omniopt2-6983.data → omniopt2-7006.data}/data/bin/omniopt_share +0 -0
- {omniopt2-6983.data → omniopt2-7006.data}/data/bin/setup.py +0 -0
- {omniopt2-6983.data → omniopt2-7006.data}/data/bin/test_requirements.txt +0 -0
- {omniopt2-6983.dist-info → omniopt2-7006.dist-info}/WHEEL +0 -0
- {omniopt2-6983.dist-info → omniopt2-7006.dist-info}/licenses/LICENSE +0 -0
- {omniopt2-6983.dist-info → omniopt2-7006.dist-info}/top_level.txt +0 -0
.omniopt.py
CHANGED
@@ -87,6 +87,15 @@ try:
|
|
87
87
|
with console.status("[bold green]Importing argparse..."):
|
88
88
|
import argparse
|
89
89
|
|
90
|
+
with console.status("[bold green]Importing rich_argparse...") as status:
|
91
|
+
from argparse import HelpFormatter
|
92
|
+
|
93
|
+
try:
|
94
|
+
from rich_argparse import RichHelpFormatter
|
95
|
+
Formatter: type[HelpFormatter] = RichHelpFormatter
|
96
|
+
except ModuleNotFoundError:
|
97
|
+
Formatter = HelpFormatter
|
98
|
+
|
90
99
|
with console.status("[bold green]Importing datetime..."):
|
91
100
|
import datetime
|
92
101
|
|
@@ -583,7 +592,7 @@ class ConfigLoader:
|
|
583
592
|
prog="omniopt",
|
584
593
|
description='A hyperparameter optimizer for slurm-based HPC-systems',
|
585
594
|
epilog=f"Example:\n\n{oo_call} --partition=alpha --experiment_name=neural_network ...",
|
586
|
-
formatter_class=
|
595
|
+
formatter_class=Formatter
|
587
596
|
)
|
588
597
|
|
589
598
|
self.parser.add_argument('--config_yaml', help='YAML configuration file', type=str, default=None)
|
README.md
CHANGED
@@ -7,7 +7,7 @@ scientists with hyperparameter optimization on SLURM-based clusters, even
|
|
7
7
|
though it works without it as well. It simplifies large-scale optimization
|
8
8
|
tasks with built-in fault tolerance and flexibility. A graphical user interface
|
9
9
|
(GUI) is available for command creation, accessible at
|
10
|
-
[OmniOpt2 GUI](https://imageseg.scads.de/omniax/). For tutorials on
|
10
|
+
[OmniOpt2 GUI](https://imageseg.scads.de/omniax/gui). For tutorials on
|
11
11
|
configuration, exit codes, and debugging, visit
|
12
12
|
[OmniOpt2 Tutorials](https://imageseg.scads.de/omniax/tutorials).
|
13
13
|
|
@@ -38,6 +38,12 @@ omniopt_plot --run_dir runs/example/0
|
|
38
38
|
omniopt_plot --run_dir runs/example/0 --min 0 --max 100
|
39
39
|
```
|
40
40
|
|
41
|
+
## Using live-share
|
42
|
+
|
43
|
+
Use `--live_share` (also enablable via GUI) to automatically share the job. You will get a URL
|
44
|
+
where your job data is hosted publically for 30 days, meaning everyone can access your results,
|
45
|
+
and you can see all kinds of visualizations and export them.
|
46
|
+
|
41
47
|
## Run Tests (Developer Use Only)
|
42
48
|
|
43
49
|
The test suite simulates various scenarios, including handling faulty
|
@@ -53,13 +59,13 @@ for more details.
|
|
53
59
|
|
54
60
|
## Install from pypi
|
55
61
|
|
56
|
-
This may not use the
|
62
|
+
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.
|
57
63
|
|
58
64
|
```command
|
59
65
|
pip3 install omniopt2
|
60
66
|
```
|
61
67
|
|
62
|
-
## Install from repo
|
68
|
+
## Install from repo (bleeding edge, may contain untested changes)
|
63
69
|
|
64
70
|
```command
|
65
71
|
pip3 install -e git+https://github.com/NormanTUD/OmniOpt2.git#egg=OmniOpt2
|
@@ -87,6 +93,10 @@ to install them.
|
|
87
93
|
|
88
94
|
I'd be glad to see your contributions!
|
89
95
|
|
96
|
+
## Issues
|
97
|
+
|
98
|
+
If you experience any problems, please write issues at my [Github Issues page](https://github.com/NormanTUD/OmniOpt/issues).
|
99
|
+
|
90
100
|
## Old OmniOpt
|
91
101
|
|
92
102
|
The old OmniOpt version, based on HyperOpt, is not supported anymore. It is still available, though, at [https://github.com/NormanTUD/LegacyOmniOpt](https://github.com/NormanTUD/LegacyOmniOpt).
|
@@ -87,6 +87,15 @@ try:
|
|
87
87
|
with console.status("[bold green]Importing argparse..."):
|
88
88
|
import argparse
|
89
89
|
|
90
|
+
with console.status("[bold green]Importing rich_argparse...") as status:
|
91
|
+
from argparse import HelpFormatter
|
92
|
+
|
93
|
+
try:
|
94
|
+
from rich_argparse import RichHelpFormatter
|
95
|
+
Formatter: type[HelpFormatter] = RichHelpFormatter
|
96
|
+
except ModuleNotFoundError:
|
97
|
+
Formatter = HelpFormatter
|
98
|
+
|
90
99
|
with console.status("[bold green]Importing datetime..."):
|
91
100
|
import datetime
|
92
101
|
|
@@ -583,7 +592,7 @@ class ConfigLoader:
|
|
583
592
|
prog="omniopt",
|
584
593
|
description='A hyperparameter optimizer for slurm-based HPC-systems',
|
585
594
|
epilog=f"Example:\n\n{oo_call} --partition=alpha --experiment_name=neural_network ...",
|
586
|
-
formatter_class=
|
595
|
+
formatter_class=Formatter
|
587
596
|
)
|
588
597
|
|
589
598
|
self.parser.add_argument('--config_yaml', help='YAML configuration file', type=str, default=None)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: omniopt2
|
3
|
-
Version:
|
3
|
+
Version: 7006
|
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
|
@@ -42,6 +42,7 @@ Requires-Dist: setuptools
|
|
42
42
|
Requires-Dist: pyright
|
43
43
|
Requires-Dist: qrcode
|
44
44
|
Requires-Dist: tabulate
|
45
|
+
Requires-Dist: rich-argparse
|
45
46
|
Requires-Dist: shellcheck-py
|
46
47
|
Requires-Dist: vulture
|
47
48
|
Requires-Dist: flake8
|
@@ -108,7 +109,7 @@ scientists with hyperparameter optimization on SLURM-based clusters, even
|
|
108
109
|
though it works without it as well. It simplifies large-scale optimization
|
109
110
|
tasks with built-in fault tolerance and flexibility. A graphical user interface
|
110
111
|
(GUI) is available for command creation, accessible at
|
111
|
-
[OmniOpt2 GUI](https://imageseg.scads.de/omniax/). For tutorials on
|
112
|
+
[OmniOpt2 GUI](https://imageseg.scads.de/omniax/gui). For tutorials on
|
112
113
|
configuration, exit codes, and debugging, visit
|
113
114
|
[OmniOpt2 Tutorials](https://imageseg.scads.de/omniax/tutorials).
|
114
115
|
|
@@ -139,6 +140,12 @@ omniopt_plot --run_dir runs/example/0
|
|
139
140
|
omniopt_plot --run_dir runs/example/0 --min 0 --max 100
|
140
141
|
```
|
141
142
|
|
143
|
+
## Using live-share
|
144
|
+
|
145
|
+
Use `--live_share` (also enablable via GUI) to automatically share the job. You will get a URL
|
146
|
+
where your job data is hosted publically for 30 days, meaning everyone can access your results,
|
147
|
+
and you can see all kinds of visualizations and export them.
|
148
|
+
|
142
149
|
## Run Tests (Developer Use Only)
|
143
150
|
|
144
151
|
The test suite simulates various scenarios, including handling faulty
|
@@ -154,13 +161,13 @@ for more details.
|
|
154
161
|
|
155
162
|
## Install from pypi
|
156
163
|
|
157
|
-
This may not use the
|
164
|
+
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.
|
158
165
|
|
159
166
|
```command
|
160
167
|
pip3 install omniopt2
|
161
168
|
```
|
162
169
|
|
163
|
-
## Install from repo
|
170
|
+
## Install from repo (bleeding edge, may contain untested changes)
|
164
171
|
|
165
172
|
```command
|
166
173
|
pip3 install -e git+https://github.com/NormanTUD/OmniOpt2.git#egg=OmniOpt2
|
@@ -188,6 +195,10 @@ to install them.
|
|
188
195
|
|
189
196
|
I'd be glad to see your contributions!
|
190
197
|
|
198
|
+
## Issues
|
199
|
+
|
200
|
+
If you experience any problems, please write issues at my [Github Issues page](https://github.com/NormanTUD/OmniOpt/issues).
|
201
|
+
|
191
202
|
## Old OmniOpt
|
192
203
|
|
193
204
|
The old OmniOpt version, based on HyperOpt, is not supported anymore. It is still available, though, at [https://github.com/NormanTUD/LegacyOmniOpt](https://github.com/NormanTUD/LegacyOmniOpt).
|
@@ -3,7 +3,7 @@
|
|
3
3
|
.general.sh,sha256=uyGMN8xNToQ0v50KoiYxm6jRmgf0orroOaodM_Nuq30,2107
|
4
4
|
.gitignore,sha256=OMaFWOR6wxjAlI85rF3euQcjQFFAl1F34abZkltKnaU,3714
|
5
5
|
.helpers.py,sha256=G4TLhtj9u1GdAB9ACnjscsqz-Eu85ew1QAAU93ctcRQ,30432
|
6
|
-
.omniopt.py,sha256=
|
6
|
+
.omniopt.py,sha256=b_cBLBf342_zXWSQQmZvqWfMBs_eBX4W6kIizx7wOkk,372524
|
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=bQmjc1Xq_9rlJhiEvy93Q5hXGs4ZKRVg3v7uaMrv9Go,5108
|
@@ -18,50 +18,50 @@
|
|
18
18
|
.shellscript_functions,sha256=7IjirQJpC7TCRPuRj1dO2W6A8h5cHt0dVzj6eH_2EiQ,14664
|
19
19
|
LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
20
20
|
MANIFEST.in,sha256=L3QBXyL1TtyWxbAPsfjZdCfpeBrRuI5MSgdnvwdQ22Q,24
|
21
|
-
README.md,sha256=
|
21
|
+
README.md,sha256=ImtT_VuWENewZKkJySRL_qpbHbs0pr6Xgs_n9HURg90,3332
|
22
22
|
apt-dependencies.txt,sha256=X5tBB8ZLW9XaFtRh8B7C2pIkSoxNNawqioDr0QZAtuM,149
|
23
23
|
omniopt,sha256=RIi0yZALrZGefiejun1fkDJ0LX95WymXd2xZFlglMsQ,48072
|
24
24
|
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=
|
29
|
-
requirements.txt,sha256=
|
28
|
+
pyproject.toml,sha256=6dgNcAztyWrErzAdThGgjQhjn8DOqlnfVjl177SaNkU,397
|
29
|
+
requirements.txt,sha256=zQ3SG99GFb2P7JNz7EbdqPdiJvWe3tL9FM2QxpwM_wg,308
|
30
30
|
setup.cfg,sha256=HEc8uu6NpfxG5_AVh5SvXOpEFMNKPPPxgMIAH144vT4,38
|
31
31
|
test_requirements.txt,sha256=dnCbKmKalrVzNZ_-iQWf1xCxcnDsdGuhbDAr9XlGm-U,477
|
32
|
-
omniopt2-
|
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.egg-info/PKG-INFO,sha256=
|
32
|
+
omniopt2-7006.data/data/bin/.colorfunctions.sh,sha256=CDlgjwrsrHR_E6c-Qak5wZlotArXm-nf9sVvXePzGZA,1083
|
33
|
+
omniopt2-7006.data/data/bin/.general.sh,sha256=uyGMN8xNToQ0v50KoiYxm6jRmgf0orroOaodM_Nuq30,2107
|
34
|
+
omniopt2-7006.data/data/bin/.helpers.py,sha256=G4TLhtj9u1GdAB9ACnjscsqz-Eu85ew1QAAU93ctcRQ,30432
|
35
|
+
omniopt2-7006.data/data/bin/.omniopt.py,sha256=b_cBLBf342_zXWSQQmZvqWfMBs_eBX4W6kIizx7wOkk,372524
|
36
|
+
omniopt2-7006.data/data/bin/.omniopt_plot_cpu_ram_usage.py,sha256=DbOAmdrbcZtsMnHJgHfeRngjtv6zX5J0axyua_dYezc,3932
|
37
|
+
omniopt2-7006.data/data/bin/.omniopt_plot_general.py,sha256=ZERZJkvVOoJhi7SszmTF1Iln-_08_0Aki48u3LHUW-k,6809
|
38
|
+
omniopt2-7006.data/data/bin/.omniopt_plot_gpu_usage.py,sha256=bQmjc1Xq_9rlJhiEvy93Q5hXGs4ZKRVg3v7uaMrv9Go,5108
|
39
|
+
omniopt2-7006.data/data/bin/.omniopt_plot_kde.py,sha256=uRLWr72TDKvj3AqJ0O0AvkKZ1ok1O1QpXnbfQQdo0nA,6873
|
40
|
+
omniopt2-7006.data/data/bin/.omniopt_plot_scatter.py,sha256=VFkly4lbmXeegWoyiu1fLO82JThPJa_iYVZIAPGPP64,8670
|
41
|
+
omniopt2-7006.data/data/bin/.omniopt_plot_scatter_generation_method.py,sha256=rgKY_w1E516c9UucVaEvaKd8tCnoUq9xg-RrYSDzYEQ,4289
|
42
|
+
omniopt2-7006.data/data/bin/.omniopt_plot_scatter_hex.py,sha256=6014iELQcS83WAAwOqVIUMZQewNP4jntlTQncTY3NTA,10527
|
43
|
+
omniopt2-7006.data/data/bin/.omniopt_plot_time_and_exit_code.py,sha256=PFDJt2dDCWSsZntDsDa5imfRLF0h5lCExH8sFp8ptVs,6465
|
44
|
+
omniopt2-7006.data/data/bin/.omniopt_plot_trial_index_result.py,sha256=5DmqZAQO_PFmzdap-TIhSMAshRXpOHQacnHAtjwnzN4,4629
|
45
|
+
omniopt2-7006.data/data/bin/.omniopt_plot_worker.py,sha256=bD-byr3NTnJ0qF4M_CogdXnhw7sVrzs1eFoqTtDjmfE,4590
|
46
|
+
omniopt2-7006.data/data/bin/.random_generator.py,sha256=ezBBUXpez_QaGdpCglMcJ0KZPdQP0XdX5gnLzO1xhwU,2987
|
47
|
+
omniopt2-7006.data/data/bin/.shellscript_functions,sha256=7IjirQJpC7TCRPuRj1dO2W6A8h5cHt0dVzj6eH_2EiQ,14664
|
48
|
+
omniopt2-7006.data/data/bin/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
49
|
+
omniopt2-7006.data/data/bin/apt-dependencies.txt,sha256=X5tBB8ZLW9XaFtRh8B7C2pIkSoxNNawqioDr0QZAtuM,149
|
50
|
+
omniopt2-7006.data/data/bin/omniopt,sha256=RIi0yZALrZGefiejun1fkDJ0LX95WymXd2xZFlglMsQ,48072
|
51
|
+
omniopt2-7006.data/data/bin/omniopt_docker,sha256=LWVUeyvmA5AKqAHiH9jBUkR5uZ6AHMnSy0eET7mK6E4,3602
|
52
|
+
omniopt2-7006.data/data/bin/omniopt_evaluate,sha256=9oBh0_ikCuIz_aJQZrN0j39NDiIDYoSvEFmSVIoFjJE,23842
|
53
|
+
omniopt2-7006.data/data/bin/omniopt_plot,sha256=Z8ZR10p-ZRSgMeVPO-wVCJ8lk-LQtntjZ9Bk9RifCIs,13360
|
54
|
+
omniopt2-7006.data/data/bin/omniopt_share,sha256=7g5I7YdoWcA6_GDwWwq0xPf23qiVc_VDrm9ySLH7SH0,14051
|
55
|
+
omniopt2-7006.data/data/bin/requirements.txt,sha256=zQ3SG99GFb2P7JNz7EbdqPdiJvWe3tL9FM2QxpwM_wg,308
|
56
|
+
omniopt2-7006.data/data/bin/setup.py,sha256=g3uEqJHXhggXwgLYoxOjsXg9Z6IV1ubh-Og59AZ264Q,4648
|
57
|
+
omniopt2-7006.data/data/bin/test_requirements.txt,sha256=dnCbKmKalrVzNZ_-iQWf1xCxcnDsdGuhbDAr9XlGm-U,477
|
58
|
+
omniopt2-7006.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
59
|
+
omniopt2.egg-info/PKG-INFO,sha256=5KwyKOu-A-bVgwnTBFSKVvx6hXzRx4HpdOCXsWhHgz4,5850
|
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
|
-
omniopt2.egg-info/requires.txt,sha256=
|
62
|
+
omniopt2.egg-info/requires.txt,sha256=lHRYoPiwFjTSCECITb1M95YoP42pq6q9WUnUTL2f50M,785
|
63
63
|
omniopt2.egg-info/top_level.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
64
|
-
omniopt2-
|
65
|
-
omniopt2-
|
66
|
-
omniopt2-
|
67
|
-
omniopt2-
|
64
|
+
omniopt2-7006.dist-info/METADATA,sha256=5KwyKOu-A-bVgwnTBFSKVvx6hXzRx4HpdOCXsWhHgz4,5850
|
65
|
+
omniopt2-7006.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
66
|
+
omniopt2-7006.dist-info/top_level.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
67
|
+
omniopt2-7006.dist-info/RECORD,,
|
omniopt2.egg-info/PKG-INFO
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: omniopt2
|
3
|
-
Version:
|
3
|
+
Version: 7006
|
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
|
@@ -42,6 +42,7 @@ Requires-Dist: setuptools
|
|
42
42
|
Requires-Dist: pyright
|
43
43
|
Requires-Dist: qrcode
|
44
44
|
Requires-Dist: tabulate
|
45
|
+
Requires-Dist: rich-argparse
|
45
46
|
Requires-Dist: shellcheck-py
|
46
47
|
Requires-Dist: vulture
|
47
48
|
Requires-Dist: flake8
|
@@ -108,7 +109,7 @@ scientists with hyperparameter optimization on SLURM-based clusters, even
|
|
108
109
|
though it works without it as well. It simplifies large-scale optimization
|
109
110
|
tasks with built-in fault tolerance and flexibility. A graphical user interface
|
110
111
|
(GUI) is available for command creation, accessible at
|
111
|
-
[OmniOpt2 GUI](https://imageseg.scads.de/omniax/). For tutorials on
|
112
|
+
[OmniOpt2 GUI](https://imageseg.scads.de/omniax/gui). For tutorials on
|
112
113
|
configuration, exit codes, and debugging, visit
|
113
114
|
[OmniOpt2 Tutorials](https://imageseg.scads.de/omniax/tutorials).
|
114
115
|
|
@@ -139,6 +140,12 @@ omniopt_plot --run_dir runs/example/0
|
|
139
140
|
omniopt_plot --run_dir runs/example/0 --min 0 --max 100
|
140
141
|
```
|
141
142
|
|
143
|
+
## Using live-share
|
144
|
+
|
145
|
+
Use `--live_share` (also enablable via GUI) to automatically share the job. You will get a URL
|
146
|
+
where your job data is hosted publically for 30 days, meaning everyone can access your results,
|
147
|
+
and you can see all kinds of visualizations and export them.
|
148
|
+
|
142
149
|
## Run Tests (Developer Use Only)
|
143
150
|
|
144
151
|
The test suite simulates various scenarios, including handling faulty
|
@@ -154,13 +161,13 @@ for more details.
|
|
154
161
|
|
155
162
|
## Install from pypi
|
156
163
|
|
157
|
-
This may not use the
|
164
|
+
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.
|
158
165
|
|
159
166
|
```command
|
160
167
|
pip3 install omniopt2
|
161
168
|
```
|
162
169
|
|
163
|
-
## Install from repo
|
170
|
+
## Install from repo (bleeding edge, may contain untested changes)
|
164
171
|
|
165
172
|
```command
|
166
173
|
pip3 install -e git+https://github.com/NormanTUD/OmniOpt2.git#egg=OmniOpt2
|
@@ -188,6 +195,10 @@ to install them.
|
|
188
195
|
|
189
196
|
I'd be glad to see your contributions!
|
190
197
|
|
198
|
+
## Issues
|
199
|
+
|
200
|
+
If you experience any problems, please write issues at my [Github Issues page](https://github.com/NormanTUD/OmniOpt/issues).
|
201
|
+
|
191
202
|
## Old OmniOpt
|
192
203
|
|
193
204
|
The old OmniOpt version, based on HyperOpt, is not supported anymore. It is still available, though, at [https://github.com/NormanTUD/LegacyOmniOpt](https://github.com/NormanTUD/LegacyOmniOpt).
|
omniopt2.egg-info/requires.txt
CHANGED
pyproject.toml
CHANGED
requirements.txt
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-6983.data → omniopt2-7006.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
|