optima-ml 0.3.2a1__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.
- OPTIMA/__init__.py +11 -0
- OPTIMA/__main__.py +6 -0
- OPTIMA/builtin/__init__.py +2 -0
- OPTIMA/builtin/evaluation.py +809 -0
- OPTIMA/builtin/figures_of_merit.py +850 -0
- OPTIMA/builtin/inputs.py +1390 -0
- OPTIMA/builtin/model.py +8 -0
- OPTIMA/builtin/search_space.py +276 -0
- OPTIMA/core/__init__.py +2 -0
- OPTIMA/core/evaluation.py +2000 -0
- OPTIMA/core/inputs.py +361 -0
- OPTIMA/core/model.py +240 -0
- OPTIMA/core/search_space.py +188 -0
- OPTIMA/core/tools.py +106 -0
- OPTIMA/core/training.py +1509 -0
- OPTIMA/core/variable_optimization.py +1489 -0
- OPTIMA/defaults.py +171 -0
- OPTIMA/hardware_configs/Dresden_Taurus.py +75 -0
- OPTIMA/hardware_configs/__init__.py +1 -0
- OPTIMA/hardware_configs/common.py +455 -0
- OPTIMA/hardware_configs/helpers.py +17 -0
- OPTIMA/helpers/__init__.py +1 -0
- OPTIMA/helpers/extract_data_from_NTuples.py +168 -0
- OPTIMA/helpers/manage_ray_nodes.py +187 -0
- OPTIMA/keras/__init__.py +2 -0
- OPTIMA/keras/model.py +539 -0
- OPTIMA/keras/tools.py +1404 -0
- OPTIMA/keras/training.py +156 -0
- OPTIMA/lightning/__init__.py +2 -0
- OPTIMA/lightning/inputs.py +280 -0
- OPTIMA/lightning/training.py +222 -0
- OPTIMA/optima.py +1672 -0
- OPTIMA/resources/__init__.py +0 -0
- OPTIMA/resources/config_verification.py +135 -0
- OPTIMA/resources/pbt_with_seed.py +1189 -0
- optima_ml-0.3.2a1.dist-info/LICENSE +675 -0
- optima_ml-0.3.2a1.dist-info/METADATA +860 -0
- optima_ml-0.3.2a1.dist-info/RECORD +41 -0
- optima_ml-0.3.2a1.dist-info/WHEEL +5 -0
- optima_ml-0.3.2a1.dist-info/entry_points.txt +3 -0
- optima_ml-0.3.2a1.dist-info/top_level.txt +1 -0
OPTIMA/__init__.py
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
"""OPTIMA is a framework for automated and distributed optimization of hyperparameters and input variables of arbitrary neural networks."""
|
|
3
|
+
from .optima import __version__, __author__, __licence__
|
|
4
|
+
|
|
5
|
+
name = "OPTIMA"
|
|
6
|
+
|
|
7
|
+
__all__ = ["__version__", "__author__", "__licence__"]
|
|
8
|
+
__pdoc__ = {
|
|
9
|
+
"helpers.extract_data_from_NTuples": False,
|
|
10
|
+
# "resources": False
|
|
11
|
+
}
|
OPTIMA/__main__.py
ADDED