moospread 0.1.1__py3-none-any.whl → 0.1.2__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.
- {moospread-0.1.1.dist-info → moospread-0.1.2.dist-info}/METADATA +26 -9
- {moospread-0.1.1.dist-info → moospread-0.1.2.dist-info}/RECORD +5 -5
- {moospread-0.1.1.dist-info → moospread-0.1.2.dist-info}/WHEEL +0 -0
- {moospread-0.1.1.dist-info → moospread-0.1.2.dist-info}/licenses/LICENSE +0 -0
- {moospread-0.1.1.dist-info → moospread-0.1.2.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: moospread
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: Sampling-based Pareto front Refinement via Efficient Adaptive Diffusion
|
|
5
5
|
Author-email: Sedjro Salomon Hotegni <salomon.hotegni@aims.ac.rw>
|
|
6
6
|
Maintainer-email: Sedjro Salomon Hotegni <salomon.hotegni@tu-dortmund.de>
|
|
@@ -21,13 +21,34 @@ Project-URL: Homepage, https://github.com/safe-autonomous-systems/moo-spread
|
|
|
21
21
|
Requires-Python: >=3.8
|
|
22
22
|
Description-Content-Type: text/markdown
|
|
23
23
|
License-File: LICENSE
|
|
24
|
-
Requires-Dist: numpy
|
|
25
|
-
Requires-Dist:
|
|
24
|
+
Requires-Dist: numpy>=1.24
|
|
25
|
+
Requires-Dist: scipy>=1.10
|
|
26
|
+
Requires-Dist: scikit-learn>=1.3
|
|
27
|
+
Requires-Dist: matplotlib>=3.7
|
|
28
|
+
Requires-Dist: pandas>=2.0
|
|
29
|
+
Requires-Dist: pytz
|
|
30
|
+
Requires-Dist: PyYAML>=6.0
|
|
31
|
+
Requires-Dist: tqdm>=4.66
|
|
32
|
+
Requires-Dist: cvxopt>=1.3.2
|
|
33
|
+
Requires-Dist: pymoo>=0.5
|
|
34
|
+
Requires-Dist: torch>=2.2
|
|
35
|
+
Requires-Dist: torchvision
|
|
36
|
+
Requires-Dist: torchaudio
|
|
37
|
+
Requires-Dist: gpytorch>=1.10
|
|
38
|
+
Requires-Dist: botorch>=0.8.5
|
|
39
|
+
Requires-Dist: pyro-ppl>=1.9.1
|
|
26
40
|
Provides-Extra: dev
|
|
27
|
-
Requires-Dist: coverage; extra == "dev"
|
|
28
|
-
Requires-Dist: mypy; extra == "dev"
|
|
29
41
|
Requires-Dist: pytest; extra == "dev"
|
|
30
42
|
Requires-Dist: ruff; extra == "dev"
|
|
43
|
+
Requires-Dist: build; extra == "dev"
|
|
44
|
+
Requires-Dist: twine; extra == "dev"
|
|
45
|
+
Provides-Extra: plot
|
|
46
|
+
Requires-Dist: seaborn>=0.13; extra == "plot"
|
|
47
|
+
Provides-Extra: config
|
|
48
|
+
Requires-Dist: hydra-core>=1.3.2; extra == "config"
|
|
49
|
+
Requires-Dist: omegaconf>=2.3.0; extra == "config"
|
|
50
|
+
Provides-Extra: tracking
|
|
51
|
+
Requires-Dist: wandb>=0.20; extra == "tracking"
|
|
31
52
|
Dynamic: license-file
|
|
32
53
|
|
|
33
54
|
<p align="center">
|
|
@@ -52,8 +73,6 @@ Dynamic: license-file
|
|
|
52
73
|
conda create -n moospread python=3.11
|
|
53
74
|
conda activate moospread
|
|
54
75
|
pip install moospread
|
|
55
|
-
# To install CUDA‐enabled PyTorch, run (or visit: https://pytorch.org/get-started/locally/):
|
|
56
|
-
pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118
|
|
57
76
|
```
|
|
58
77
|
Or, to install the latest code from GitHub:
|
|
59
78
|
```python
|
|
@@ -62,8 +81,6 @@ conda activate moospread
|
|
|
62
81
|
git clone https://github.com/safe-autonomous-systems/moo-spread.git
|
|
63
82
|
cd moo-spread
|
|
64
83
|
pip install -e .
|
|
65
|
-
# To install CUDA‐enabled PyTorch, run (or visit: https://pytorch.org/get-started/locally/):
|
|
66
|
-
pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118
|
|
67
84
|
```
|
|
68
85
|
### Basic usage
|
|
69
86
|
This example shows how to solve a standard multi-objective optimization benchmark (ZDT2) using the **SPREAD** solver.
|
|
@@ -56,8 +56,8 @@ moospread/utils/mobo_utils/mobo/surrogate_model/thompson_sampling.py,sha256=Nmp6
|
|
|
56
56
|
moospread/utils/offline_utils/__init__.py,sha256=MJC-fqvQnbQ0T_wjCw_QK8nKo_xpQxh0buq91fxYjFY,742
|
|
57
57
|
moospread/utils/offline_utils/handle_task.py,sha256=VJjcWZC5AoPm42YN_SKgSpcyHtKBAgXgWwSFU0-Ehis,7586
|
|
58
58
|
moospread/utils/offline_utils/proxies.py,sha256=DPBykB8l1XJmT5QQCAQrgMZz-8FiGEiNwN0bBdYJIaY,11218
|
|
59
|
-
moospread-0.1.
|
|
60
|
-
moospread-0.1.
|
|
61
|
-
moospread-0.1.
|
|
62
|
-
moospread-0.1.
|
|
63
|
-
moospread-0.1.
|
|
59
|
+
moospread-0.1.2.dist-info/licenses/LICENSE,sha256=YwtV5PRo6WMw5CWQMD728fSF8cWEKKfwOhek37Yi1so,1079
|
|
60
|
+
moospread-0.1.2.dist-info/METADATA,sha256=wzYcnaPd_T-vgO7vsUS1vgIRMr4uNyX4bcbrfdDoSGM,5839
|
|
61
|
+
moospread-0.1.2.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
62
|
+
moospread-0.1.2.dist-info/top_level.txt,sha256=LWi5kIahDQRNXNkx55T-gefn09Bgcq8SoCxp72S-7x0,10
|
|
63
|
+
moospread-0.1.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|