optima-ml 0.3.1a2__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.
Files changed (40) hide show
  1. OPTIMA/__init__.py +11 -0
  2. OPTIMA/__main__.py +6 -0
  3. OPTIMA/builtin/__init__.py +2 -0
  4. OPTIMA/builtin/evaluation.py +809 -0
  5. OPTIMA/builtin/figures_of_merit.py +850 -0
  6. OPTIMA/builtin/inputs.py +1403 -0
  7. OPTIMA/builtin/model.py +8 -0
  8. OPTIMA/builtin/search_space.py +276 -0
  9. OPTIMA/core/__init__.py +2 -0
  10. OPTIMA/core/evaluation.py +2021 -0
  11. OPTIMA/core/inputs.py +365 -0
  12. OPTIMA/core/model.py +240 -0
  13. OPTIMA/core/search_space.py +188 -0
  14. OPTIMA/core/tools.py +109 -0
  15. OPTIMA/core/training.py +1479 -0
  16. OPTIMA/core/variable_optimization.py +1540 -0
  17. OPTIMA/defaults.py +171 -0
  18. OPTIMA/hardware_configs/Dresden_Taurus.py +75 -0
  19. OPTIMA/hardware_configs/__init__.py +1 -0
  20. OPTIMA/hardware_configs/common.py +455 -0
  21. OPTIMA/hardware_configs/helpers.py +17 -0
  22. OPTIMA/helpers/__init__.py +1 -0
  23. OPTIMA/helpers/extract_data_from_NTuples.py +168 -0
  24. OPTIMA/helpers/manage_ray_nodes.py +187 -0
  25. OPTIMA/keras/__init__.py +2 -0
  26. OPTIMA/keras/model.py +534 -0
  27. OPTIMA/keras/tools.py +1404 -0
  28. OPTIMA/keras/training.py +155 -0
  29. OPTIMA/lightning/__init__.py +2 -0
  30. OPTIMA/lightning/inputs.py +280 -0
  31. OPTIMA/lightning/training.py +222 -0
  32. OPTIMA/optima.py +1631 -0
  33. OPTIMA/resources/__init__.py +0 -0
  34. OPTIMA/resources/pbt_with_seed.py +1118 -0
  35. optima_ml-0.3.1a2.dist-info/LICENSE +675 -0
  36. optima_ml-0.3.1a2.dist-info/METADATA +836 -0
  37. optima_ml-0.3.1a2.dist-info/RECORD +40 -0
  38. optima_ml-0.3.1a2.dist-info/WHEEL +6 -0
  39. optima_ml-0.3.1a2.dist-info/entry_points.txt +3 -0
  40. optima_ml-0.3.1a2.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
@@ -0,0 +1,6 @@
1
+ # -*- coding: utf-8 -*-
2
+
3
+ """OPTIMA.__main__: executed when OPTIMA directory is called as script."""
4
+
5
+ from .optima import main
6
+ main()
@@ -0,0 +1,2 @@
1
+ # -*- coding: utf-8 -*-
2
+ """A package that provides built-in functionality for classification using multilayer perceptrons with Keras."""