omniopt2 6982__tar.gz → 7001__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.
- {omniopt2-6982 → omniopt2-7001}/PKG-INFO +14 -4
- {omniopt2-6982 → omniopt2-7001}/README.md +13 -3
- {omniopt2-6982 → omniopt2-7001}/omniopt2.egg-info/PKG-INFO +14 -4
- {omniopt2-6982 → omniopt2-7001}/pyproject.toml +1 -1
- {omniopt2-6982 → omniopt2-7001}/.colorfunctions.sh +0 -0
- {omniopt2-6982 → omniopt2-7001}/.dockerignore +0 -0
- {omniopt2-6982 → omniopt2-7001}/.general.sh +0 -0
- {omniopt2-6982 → omniopt2-7001}/.gitignore +0 -0
- {omniopt2-6982 → omniopt2-7001}/.helpers.py +0 -0
- {omniopt2-6982 → omniopt2-7001}/.omniopt.py +0 -0
- {omniopt2-6982 → omniopt2-7001}/.omniopt_plot_cpu_ram_usage.py +0 -0
- {omniopt2-6982 → omniopt2-7001}/.omniopt_plot_general.py +0 -0
- {omniopt2-6982 → omniopt2-7001}/.omniopt_plot_gpu_usage.py +0 -0
- {omniopt2-6982 → omniopt2-7001}/.omniopt_plot_kde.py +0 -0
- {omniopt2-6982 → omniopt2-7001}/.omniopt_plot_scatter.py +0 -0
- {omniopt2-6982 → omniopt2-7001}/.omniopt_plot_scatter_generation_method.py +0 -0
- {omniopt2-6982 → omniopt2-7001}/.omniopt_plot_scatter_hex.py +0 -0
- {omniopt2-6982 → omniopt2-7001}/.omniopt_plot_time_and_exit_code.py +0 -0
- {omniopt2-6982 → omniopt2-7001}/.omniopt_plot_trial_index_result.py +0 -0
- {omniopt2-6982 → omniopt2-7001}/.omniopt_plot_worker.py +0 -0
- {omniopt2-6982 → omniopt2-7001}/.random_generator.py +0 -0
- {omniopt2-6982 → omniopt2-7001}/.shellscript_functions +0 -0
- {omniopt2-6982 → omniopt2-7001}/LICENSE +0 -0
- {omniopt2-6982 → omniopt2-7001}/MANIFEST.in +0 -0
- {omniopt2-6982 → omniopt2-7001}/apt-dependencies.txt +0 -0
- {omniopt2-6982 → omniopt2-7001}/omniopt +0 -0
- {omniopt2-6982 → omniopt2-7001}/omniopt2.egg-info/SOURCES.txt +0 -0
- {omniopt2-6982 → omniopt2-7001}/omniopt2.egg-info/dependency_links.txt +0 -0
- {omniopt2-6982 → omniopt2-7001}/omniopt2.egg-info/requires.txt +0 -0
- {omniopt2-6982 → omniopt2-7001}/omniopt2.egg-info/top_level.txt +0 -0
- {omniopt2-6982 → omniopt2-7001}/omniopt_docker +0 -0
- {omniopt2-6982 → omniopt2-7001}/omniopt_evaluate +0 -0
- {omniopt2-6982 → omniopt2-7001}/omniopt_plot +0 -0
- {omniopt2-6982 → omniopt2-7001}/omniopt_share +0 -0
- {omniopt2-6982 → omniopt2-7001}/requirements.txt +0 -0
- {omniopt2-6982 → omniopt2-7001}/setup.cfg +0 -0
- {omniopt2-6982 → omniopt2-7001}/setup.py +0 -0
- {omniopt2-6982 → omniopt2-7001}/test_requirements.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: omniopt2
|
3
|
-
Version:
|
3
|
+
Version: 7001
|
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
|
@@ -108,7 +108,7 @@ scientists with hyperparameter optimization on SLURM-based clusters, even
|
|
108
108
|
though it works without it as well. It simplifies large-scale optimization
|
109
109
|
tasks with built-in fault tolerance and flexibility. A graphical user interface
|
110
110
|
(GUI) is available for command creation, accessible at
|
111
|
-
[OmniOpt2 GUI](https://imageseg.scads.de/omniax/). For tutorials on
|
111
|
+
[OmniOpt2 GUI](https://imageseg.scads.de/omniax/gui). For tutorials on
|
112
112
|
configuration, exit codes, and debugging, visit
|
113
113
|
[OmniOpt2 Tutorials](https://imageseg.scads.de/omniax/tutorials).
|
114
114
|
|
@@ -139,6 +139,12 @@ omniopt_plot --run_dir runs/example/0
|
|
139
139
|
omniopt_plot --run_dir runs/example/0 --min 0 --max 100
|
140
140
|
```
|
141
141
|
|
142
|
+
## Using live-share
|
143
|
+
|
144
|
+
Use `--live_share` (also enablable via GUI) to automatically share the job. You will get a URL
|
145
|
+
where your job data is hosted publically for 30 days, meaning everyone can access your results,
|
146
|
+
and you can see all kinds of visualizations and export them.
|
147
|
+
|
142
148
|
## Run Tests (Developer Use Only)
|
143
149
|
|
144
150
|
The test suite simulates various scenarios, including handling faulty
|
@@ -154,13 +160,13 @@ for more details.
|
|
154
160
|
|
155
161
|
## Install from pypi
|
156
162
|
|
157
|
-
This may not use the
|
163
|
+
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
164
|
|
159
165
|
```command
|
160
166
|
pip3 install omniopt2
|
161
167
|
```
|
162
168
|
|
163
|
-
## Install from repo
|
169
|
+
## Install from repo (bleeding edge, may contain untested changes)
|
164
170
|
|
165
171
|
```command
|
166
172
|
pip3 install -e git+https://github.com/NormanTUD/OmniOpt2.git#egg=OmniOpt2
|
@@ -188,6 +194,10 @@ to install them.
|
|
188
194
|
|
189
195
|
I'd be glad to see your contributions!
|
190
196
|
|
197
|
+
## Issues
|
198
|
+
|
199
|
+
If you experience any problems, please write issues at my [Github Issues page](https://github.com/NormanTUD/OmniOpt/issues).
|
200
|
+
|
191
201
|
## Old OmniOpt
|
192
202
|
|
193
203
|
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).
|
@@ -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).
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: omniopt2
|
3
|
-
Version:
|
3
|
+
Version: 7001
|
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
|
@@ -108,7 +108,7 @@ scientists with hyperparameter optimization on SLURM-based clusters, even
|
|
108
108
|
though it works without it as well. It simplifies large-scale optimization
|
109
109
|
tasks with built-in fault tolerance and flexibility. A graphical user interface
|
110
110
|
(GUI) is available for command creation, accessible at
|
111
|
-
[OmniOpt2 GUI](https://imageseg.scads.de/omniax/). For tutorials on
|
111
|
+
[OmniOpt2 GUI](https://imageseg.scads.de/omniax/gui). For tutorials on
|
112
112
|
configuration, exit codes, and debugging, visit
|
113
113
|
[OmniOpt2 Tutorials](https://imageseg.scads.de/omniax/tutorials).
|
114
114
|
|
@@ -139,6 +139,12 @@ omniopt_plot --run_dir runs/example/0
|
|
139
139
|
omniopt_plot --run_dir runs/example/0 --min 0 --max 100
|
140
140
|
```
|
141
141
|
|
142
|
+
## Using live-share
|
143
|
+
|
144
|
+
Use `--live_share` (also enablable via GUI) to automatically share the job. You will get a URL
|
145
|
+
where your job data is hosted publically for 30 days, meaning everyone can access your results,
|
146
|
+
and you can see all kinds of visualizations and export them.
|
147
|
+
|
142
148
|
## Run Tests (Developer Use Only)
|
143
149
|
|
144
150
|
The test suite simulates various scenarios, including handling faulty
|
@@ -154,13 +160,13 @@ for more details.
|
|
154
160
|
|
155
161
|
## Install from pypi
|
156
162
|
|
157
|
-
This may not use the
|
163
|
+
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
164
|
|
159
165
|
```command
|
160
166
|
pip3 install omniopt2
|
161
167
|
```
|
162
168
|
|
163
|
-
## Install from repo
|
169
|
+
## Install from repo (bleeding edge, may contain untested changes)
|
164
170
|
|
165
171
|
```command
|
166
172
|
pip3 install -e git+https://github.com/NormanTUD/OmniOpt2.git#egg=OmniOpt2
|
@@ -188,6 +194,10 @@ to install them.
|
|
188
194
|
|
189
195
|
I'd be glad to see your contributions!
|
190
196
|
|
197
|
+
## Issues
|
198
|
+
|
199
|
+
If you experience any problems, please write issues at my [Github Issues page](https://github.com/NormanTUD/OmniOpt/issues).
|
200
|
+
|
191
201
|
## Old OmniOpt
|
192
202
|
|
193
203
|
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).
|
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
|
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
|