moospread 0.1.1__tar.gz → 0.1.2__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 (70) hide show
  1. {moospread-0.1.1/moospread.egg-info → moospread-0.1.2}/PKG-INFO +26 -9
  2. {moospread-0.1.1 → moospread-0.1.2}/README_PYPI.md +0 -4
  3. {moospread-0.1.1 → moospread-0.1.2/moospread.egg-info}/PKG-INFO +26 -9
  4. moospread-0.1.2/moospread.egg-info/requires.txt +32 -0
  5. {moospread-0.1.1 → moospread-0.1.2}/pyproject.toml +28 -9
  6. moospread-0.1.1/moospread.egg-info/requires.txt +0 -8
  7. {moospread-0.1.1 → moospread-0.1.2}/LICENSE +0 -0
  8. {moospread-0.1.1 → moospread-0.1.2}/README.md +0 -0
  9. {moospread-0.1.1 → moospread-0.1.2}/moospread/__init__.py +0 -0
  10. {moospread-0.1.1 → moospread-0.1.2}/moospread/core.py +0 -0
  11. {moospread-0.1.1 → moospread-0.1.2}/moospread/problem.py +0 -0
  12. {moospread-0.1.1 → moospread-0.1.2}/moospread/tasks/__init__.py +0 -0
  13. {moospread-0.1.1 → moospread-0.1.2}/moospread/tasks/dtlz_torch.py +0 -0
  14. {moospread-0.1.1 → moospread-0.1.2}/moospread/tasks/mw_torch.py +0 -0
  15. {moospread-0.1.1 → moospread-0.1.2}/moospread/tasks/re_torch.py +0 -0
  16. {moospread-0.1.1 → moospread-0.1.2}/moospread/tasks/zdt_torch.py +0 -0
  17. {moospread-0.1.1 → moospread-0.1.2}/moospread/utils/__init__.py +0 -0
  18. {moospread-0.1.1 → moospread-0.1.2}/moospread/utils/constraint_utils/__init__.py +0 -0
  19. {moospread-0.1.1 → moospread-0.1.2}/moospread/utils/constraint_utils/gradient.py +0 -0
  20. {moospread-0.1.1 → moospread-0.1.2}/moospread/utils/constraint_utils/mgda_core.py +0 -0
  21. {moospread-0.1.1 → moospread-0.1.2}/moospread/utils/constraint_utils/pmgda_solver.py +0 -0
  22. {moospread-0.1.1 → moospread-0.1.2}/moospread/utils/constraint_utils/prefs.py +0 -0
  23. {moospread-0.1.1 → moospread-0.1.2}/moospread/utils/ditmoo.py +0 -0
  24. {moospread-0.1.1 → moospread-0.1.2}/moospread/utils/lhs.py +0 -0
  25. {moospread-0.1.1 → moospread-0.1.2}/moospread/utils/misc.py +0 -0
  26. {moospread-0.1.1 → moospread-0.1.2}/moospread/utils/mobo_utils/__init__.py +0 -0
  27. {moospread-0.1.1 → moospread-0.1.2}/moospread/utils/mobo_utils/evolution/__init__.py +0 -0
  28. {moospread-0.1.1 → moospread-0.1.2}/moospread/utils/mobo_utils/evolution/dom.py +0 -0
  29. {moospread-0.1.1 → moospread-0.1.2}/moospread/utils/mobo_utils/evolution/norm.py +0 -0
  30. {moospread-0.1.1 → moospread-0.1.2}/moospread/utils/mobo_utils/evolution/utils.py +0 -0
  31. {moospread-0.1.1 → moospread-0.1.2}/moospread/utils/mobo_utils/learning/__init__.py +0 -0
  32. {moospread-0.1.1 → moospread-0.1.2}/moospread/utils/mobo_utils/learning/model.py +0 -0
  33. {moospread-0.1.1 → moospread-0.1.2}/moospread/utils/mobo_utils/learning/model_init.py +0 -0
  34. {moospread-0.1.1 → moospread-0.1.2}/moospread/utils/mobo_utils/learning/model_update.py +0 -0
  35. {moospread-0.1.1 → moospread-0.1.2}/moospread/utils/mobo_utils/learning/prediction.py +0 -0
  36. {moospread-0.1.1 → moospread-0.1.2}/moospread/utils/mobo_utils/learning/utils.py +0 -0
  37. {moospread-0.1.1 → moospread-0.1.2}/moospread/utils/mobo_utils/lhs_for_mobo.py +0 -0
  38. {moospread-0.1.1 → moospread-0.1.2}/moospread/utils/mobo_utils/mobo/__init__.py +0 -0
  39. {moospread-0.1.1 → moospread-0.1.2}/moospread/utils/mobo_utils/mobo/acquisition.py +0 -0
  40. {moospread-0.1.1 → moospread-0.1.2}/moospread/utils/mobo_utils/mobo/algorithms.py +0 -0
  41. {moospread-0.1.1 → moospread-0.1.2}/moospread/utils/mobo_utils/mobo/factory.py +0 -0
  42. {moospread-0.1.1 → moospread-0.1.2}/moospread/utils/mobo_utils/mobo/mobo.py +0 -0
  43. {moospread-0.1.1 → moospread-0.1.2}/moospread/utils/mobo_utils/mobo/selection.py +0 -0
  44. {moospread-0.1.1 → moospread-0.1.2}/moospread/utils/mobo_utils/mobo/solver/__init__.py +0 -0
  45. {moospread-0.1.1 → moospread-0.1.2}/moospread/utils/mobo_utils/mobo/solver/moead.py +0 -0
  46. {moospread-0.1.1 → moospread-0.1.2}/moospread/utils/mobo_utils/mobo/solver/nsga2.py +0 -0
  47. {moospread-0.1.1 → moospread-0.1.2}/moospread/utils/mobo_utils/mobo/solver/parego/__init__.py +0 -0
  48. {moospread-0.1.1 → moospread-0.1.2}/moospread/utils/mobo_utils/mobo/solver/parego/parego.py +0 -0
  49. {moospread-0.1.1 → moospread-0.1.2}/moospread/utils/mobo_utils/mobo/solver/parego/utils.py +0 -0
  50. {moospread-0.1.1 → moospread-0.1.2}/moospread/utils/mobo_utils/mobo/solver/pareto_discovery/__init__.py +0 -0
  51. {moospread-0.1.1 → moospread-0.1.2}/moospread/utils/mobo_utils/mobo/solver/pareto_discovery/buffer.py +0 -0
  52. {moospread-0.1.1 → moospread-0.1.2}/moospread/utils/mobo_utils/mobo/solver/pareto_discovery/pareto_discovery.py +0 -0
  53. {moospread-0.1.1 → moospread-0.1.2}/moospread/utils/mobo_utils/mobo/solver/pareto_discovery/utils.py +0 -0
  54. {moospread-0.1.1 → moospread-0.1.2}/moospread/utils/mobo_utils/mobo/solver/solver.py +0 -0
  55. {moospread-0.1.1 → moospread-0.1.2}/moospread/utils/mobo_utils/mobo/surrogate_model/__init__.py +0 -0
  56. {moospread-0.1.1 → moospread-0.1.2}/moospread/utils/mobo_utils/mobo/surrogate_model/base.py +0 -0
  57. {moospread-0.1.1 → moospread-0.1.2}/moospread/utils/mobo_utils/mobo/surrogate_model/gaussian_process.py +0 -0
  58. {moospread-0.1.1 → moospread-0.1.2}/moospread/utils/mobo_utils/mobo/surrogate_model/thompson_sampling.py +0 -0
  59. {moospread-0.1.1 → moospread-0.1.2}/moospread/utils/mobo_utils/mobo/surrogate_problem.py +0 -0
  60. {moospread-0.1.1 → moospread-0.1.2}/moospread/utils/mobo_utils/mobo/transformation.py +0 -0
  61. {moospread-0.1.1 → moospread-0.1.2}/moospread/utils/mobo_utils/mobo/utils.py +0 -0
  62. {moospread-0.1.1 → moospread-0.1.2}/moospread/utils/mobo_utils/spread_mobo_utils.py +0 -0
  63. {moospread-0.1.1 → moospread-0.1.2}/moospread/utils/offline_utils/__init__.py +0 -0
  64. {moospread-0.1.1 → moospread-0.1.2}/moospread/utils/offline_utils/handle_task.py +0 -0
  65. {moospread-0.1.1 → moospread-0.1.2}/moospread/utils/offline_utils/proxies.py +0 -0
  66. {moospread-0.1.1 → moospread-0.1.2}/moospread/utils/spread_utils.py +0 -0
  67. {moospread-0.1.1 → moospread-0.1.2}/moospread.egg-info/SOURCES.txt +0 -0
  68. {moospread-0.1.1 → moospread-0.1.2}/moospread.egg-info/dependency_links.txt +0 -0
  69. {moospread-0.1.1 → moospread-0.1.2}/moospread.egg-info/top_level.txt +0 -0
  70. {moospread-0.1.1 → moospread-0.1.2}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: moospread
3
- Version: 0.1.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: torch
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.
@@ -20,8 +20,6 @@
20
20
  conda create -n moospread python=3.11
21
21
  conda activate moospread
22
22
  pip install moospread
23
- # To install CUDA‐enabled PyTorch, run (or visit: https://pytorch.org/get-started/locally/):
24
- pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118
25
23
  ```
26
24
  Or, to install the latest code from GitHub:
27
25
  ```python
@@ -30,8 +28,6 @@ conda activate moospread
30
28
  git clone https://github.com/safe-autonomous-systems/moo-spread.git
31
29
  cd moo-spread
32
30
  pip install -e .
33
- # To install CUDA‐enabled PyTorch, run (or visit: https://pytorch.org/get-started/locally/):
34
- pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118
35
31
  ```
36
32
  ### Basic usage
37
33
  This example shows how to solve a standard multi-objective optimization benchmark (ZDT2) using the **SPREAD** solver.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: moospread
3
- Version: 0.1.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: torch
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.
@@ -0,0 +1,32 @@
1
+ numpy>=1.24
2
+ scipy>=1.10
3
+ scikit-learn>=1.3
4
+ matplotlib>=3.7
5
+ pandas>=2.0
6
+ pytz
7
+ PyYAML>=6.0
8
+ tqdm>=4.66
9
+ cvxopt>=1.3.2
10
+ pymoo>=0.5
11
+ torch>=2.2
12
+ torchvision
13
+ torchaudio
14
+ gpytorch>=1.10
15
+ botorch>=0.8.5
16
+ pyro-ppl>=1.9.1
17
+
18
+ [config]
19
+ hydra-core>=1.3.2
20
+ omegaconf>=2.3.0
21
+
22
+ [dev]
23
+ pytest
24
+ ruff
25
+ build
26
+ twine
27
+
28
+ [plot]
29
+ seaborn>=0.13
30
+
31
+ [tracking]
32
+ wandb>=0.20
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "moospread"
7
- version = "0.1.1"
7
+ version = "0.1.2"
8
8
  description = "Sampling-based Pareto front Refinement via Efficient Adaptive Diffusion"
9
9
  readme = "README_PYPI.md"
10
10
  requires-python = ">=3.8"
@@ -17,21 +17,40 @@ maintainers = [
17
17
  ]
18
18
 
19
19
  dependencies = [
20
- "numpy",
21
- "torch"
20
+ "numpy>=1.24",
21
+ "scipy>=1.10",
22
+ "scikit-learn>=1.3",
23
+ "matplotlib>=3.7",
24
+ "pandas>=2.0",
25
+ "pytz",
26
+ "PyYAML>=6.0",
27
+ "tqdm>=4.66",
28
+ "cvxopt>=1.3.2",
29
+
30
+ # MOO / optimization
31
+ "pymoo>=0.5",
32
+
33
+ # PyTorch stack
34
+ "torch>=2.2",
35
+ "torchvision",
36
+ "torchaudio",
37
+
38
+ # Bayesian optimization / probabilistic
39
+ "gpytorch>=1.10",
40
+ "botorch>=0.8.5",
41
+ "pyro-ppl>=1.9.1",
22
42
  ]
23
43
 
44
+
24
45
  [tool.setuptools.packages.find]
25
46
  include = ["moospread*"]
26
47
  exclude = ["experiments*", "images*"]
27
48
 
28
49
  [project.optional-dependencies]
29
- dev = [
30
- "coverage", # testing
31
- "mypy", # linting
32
- "pytest", # testing
33
- "ruff" # linting
34
- ]
50
+ dev = ["pytest", "ruff", "build", "twine"]
51
+ plot = ["seaborn>=0.13"]
52
+ config = ["hydra-core>=1.3.2", "omegaconf>=2.3.0"]
53
+ tracking = ["wandb>=0.20"]
35
54
 
36
55
  [project.urls]
37
56
  bugs = "https://github.com/safe-autonomous-systems/moo-spread/issues"
@@ -1,8 +0,0 @@
1
- numpy
2
- torch
3
-
4
- [dev]
5
- coverage
6
- mypy
7
- pytest
8
- ruff
File without changes
File without changes
File without changes
File without changes