hypertune 1.1.0rc39__tar.gz → 1.1.0rc40__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 (37) hide show
  1. {hypertune-1.1.0rc39 → hypertune-1.1.0rc40}/PKG-INFO +1 -1
  2. {hypertune-1.1.0rc39 → hypertune-1.1.0rc40}/hypertune/iteration_lineage.py +1 -1
  3. {hypertune-1.1.0rc39 → hypertune-1.1.0rc40}/hypertune/matrix/hyperopt.py +1 -1
  4. {hypertune-1.1.0rc39 → hypertune-1.1.0rc40}/hypertune/matrix/utils.py +2 -2
  5. {hypertune-1.1.0rc39 → hypertune-1.1.0rc40}/hypertune/pkg.py +1 -1
  6. {hypertune-1.1.0rc39 → hypertune-1.1.0rc40}/hypertune/search_managers/bayesian_optimization/acquisition_function.py +1 -1
  7. {hypertune-1.1.0rc39 → hypertune-1.1.0rc40}/hypertune/search_managers/bayesian_optimization/manager.py +1 -1
  8. {hypertune-1.1.0rc39 → hypertune-1.1.0rc40}/hypertune/search_managers/bayesian_optimization/space.py +1 -1
  9. {hypertune-1.1.0rc39 → hypertune-1.1.0rc40}/hypertune/search_managers/grid_search/manager.py +1 -1
  10. {hypertune-1.1.0rc39 → hypertune-1.1.0rc40}/hypertune/search_managers/hyperband/manager.py +1 -1
  11. {hypertune-1.1.0rc39 → hypertune-1.1.0rc40}/hypertune/search_managers/hyperopt/manager.py +1 -1
  12. {hypertune-1.1.0rc39 → hypertune-1.1.0rc40}/hypertune/search_managers/mapping/manager.py +1 -1
  13. {hypertune-1.1.0rc39 → hypertune-1.1.0rc40}/hypertune/search_managers/random_search/manager.py +1 -1
  14. {hypertune-1.1.0rc39 → hypertune-1.1.0rc40}/hypertune.egg-info/PKG-INFO +1 -1
  15. {hypertune-1.1.0rc39 → hypertune-1.1.0rc40}/MANIFEST.in +0 -0
  16. {hypertune-1.1.0rc39 → hypertune-1.1.0rc40}/hypertune/__init__.py +0 -0
  17. {hypertune-1.1.0rc39 → hypertune-1.1.0rc40}/hypertune/logger.py +0 -0
  18. {hypertune-1.1.0rc39 → hypertune-1.1.0rc40}/hypertune/matrix/__init__.py +0 -0
  19. {hypertune-1.1.0rc39 → hypertune-1.1.0rc40}/hypertune/matrix/dist.py +0 -0
  20. {hypertune-1.1.0rc39 → hypertune-1.1.0rc40}/hypertune/py.typed +0 -0
  21. {hypertune-1.1.0rc39 → hypertune-1.1.0rc40}/hypertune/search_managers/__init__.py +0 -0
  22. {hypertune-1.1.0rc39 → hypertune-1.1.0rc40}/hypertune/search_managers/base.py +0 -0
  23. {hypertune-1.1.0rc39 → hypertune-1.1.0rc40}/hypertune/search_managers/bayesian_optimization/__init__.py +0 -0
  24. {hypertune-1.1.0rc39 → hypertune-1.1.0rc40}/hypertune/search_managers/bayesian_optimization/optimizer.py +0 -0
  25. {hypertune-1.1.0rc39 → hypertune-1.1.0rc40}/hypertune/search_managers/grid_search/__init__.py +0 -0
  26. {hypertune-1.1.0rc39 → hypertune-1.1.0rc40}/hypertune/search_managers/hyperband/__init__.py +0 -0
  27. {hypertune-1.1.0rc39 → hypertune-1.1.0rc40}/hypertune/search_managers/hyperopt/__init__.py +0 -0
  28. {hypertune-1.1.0rc39 → hypertune-1.1.0rc40}/hypertune/search_managers/mapping/__init__.py +0 -0
  29. {hypertune-1.1.0rc39 → hypertune-1.1.0rc40}/hypertune/search_managers/random_search/__init__.py +0 -0
  30. {hypertune-1.1.0rc39 → hypertune-1.1.0rc40}/hypertune/search_managers/spec.py +0 -0
  31. {hypertune-1.1.0rc39 → hypertune-1.1.0rc40}/hypertune/search_managers/utils.py +0 -0
  32. {hypertune-1.1.0rc39 → hypertune-1.1.0rc40}/hypertune.egg-info/SOURCES.txt +0 -0
  33. {hypertune-1.1.0rc39 → hypertune-1.1.0rc40}/hypertune.egg-info/dependency_links.txt +0 -0
  34. {hypertune-1.1.0rc39 → hypertune-1.1.0rc40}/hypertune.egg-info/requires.txt +0 -0
  35. {hypertune-1.1.0rc39 → hypertune-1.1.0rc40}/hypertune.egg-info/top_level.txt +0 -0
  36. {hypertune-1.1.0rc39 → hypertune-1.1.0rc40}/setup.cfg +0 -0
  37. {hypertune-1.1.0rc39 → hypertune-1.1.0rc40}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: hypertune
3
- Version: 1.1.0rc39
3
+ Version: 1.1.0rc40
4
4
  Summary: A library for performing hyperparameter optimization with Polyaxon.
5
5
  Home-page: https://github.com/polyaxon/hypertune
6
6
  Author: Polyaxon, Inc.
@@ -6,7 +6,7 @@ from clipped.utils.np import sanitize_dict, sanitize_np_types
6
6
 
7
7
  from hypertune.logger import logger
8
8
  from polyaxon.client import RunClient
9
- from polyaxon.polyflow import V1Join
9
+ from polyaxon.schemas import V1Join
10
10
  from traceml.artifacts import V1ArtifactKind, V1RunArtifact
11
11
 
12
12
 
@@ -1,7 +1,7 @@
1
1
  import hyperopt
2
2
 
3
3
  from hypertune.matrix.utils import to_numpy
4
- from polyaxon.polyflow import (
4
+ from polyaxon.schemas import (
5
5
  V1HpChoice,
6
6
  V1HpGeomSpace,
7
7
  V1HpLinSpace,
@@ -5,7 +5,7 @@ from datetime import date, datetime
5
5
  from clipped.compact.pydantic import ValidationError
6
6
 
7
7
  from hypertune.matrix import dist
8
- from polyaxon.polyflow import (
8
+ from polyaxon.schemas import (
9
9
  V1HpChoice,
10
10
  V1HpDateRange,
11
11
  V1HpDateTimeRange,
@@ -22,8 +22,8 @@ from polyaxon.polyflow import (
22
22
  V1HpQUniform,
23
23
  V1HpRange,
24
24
  V1HpUniform,
25
+ validate_pchoice,
25
26
  )
26
- from polyaxon.polyflow.matrix.params import validate_pchoice
27
27
 
28
28
 
29
29
  def pchoice(values, size=None, rand_generator=None):
@@ -1,5 +1,5 @@
1
1
  NAME = "hypertune"
2
- VERSION = "1.1.0-rc39"
2
+ VERSION = "1.1.0-rc40"
3
3
  DESC = "A library for performing hyperparameter optimization with Polyaxon."
4
4
  URL = "https://github.com/polyaxon/hypertune"
5
5
  AUTHOR = "Polyaxon, Inc."
@@ -6,7 +6,7 @@ from sklearn.gaussian_process import GaussianProcessRegressor
6
6
  from sklearn.gaussian_process.kernels import RBF, Matern
7
7
 
8
8
  from hypertune.search_managers.utils import get_random_generator
9
- from polyaxon.polyflow import (
9
+ from polyaxon.schemas import (
10
10
  AcquisitionFunctions,
11
11
  GaussianProcessConfig,
12
12
  GaussianProcessesKernels,
@@ -3,7 +3,7 @@ from typing import Dict, List
3
3
  from hypertune.search_managers.base import BaseManager
4
4
  from hypertune.search_managers.bayesian_optimization.optimizer import BOOptimizer
5
5
  from hypertune.search_managers.random_search.manager import RandomSearchManager
6
- from polyaxon.polyflow import V1Bayes, V1RandomSearch
6
+ from polyaxon.schemas import V1Bayes, V1RandomSearch
7
7
 
8
8
 
9
9
  class BayesSearchManager(BaseManager):
@@ -2,7 +2,7 @@ import numpy as np
2
2
 
3
3
  from hypertune.logger import logger
4
4
  from hypertune.matrix.utils import get_max, get_min, to_numpy
5
- from polyaxon.polyflow import V1Optimization
5
+ from polyaxon.schemas import V1Optimization
6
6
 
7
7
 
8
8
  class SearchSpace:
@@ -4,7 +4,7 @@ from typing import Dict, List
4
4
 
5
5
  from hypertune.matrix.utils import to_numpy
6
6
  from hypertune.search_managers.base import BaseManager
7
- from polyaxon.polyflow import V1GridSearch
7
+ from polyaxon.schemas import V1GridSearch
8
8
 
9
9
 
10
10
  class GridSearchManager(BaseManager):
@@ -2,7 +2,7 @@ from typing import Dict, List
2
2
 
3
3
  from hypertune.search_managers.base import BaseManager
4
4
  from hypertune.search_managers.random_search.manager import RandomSearchManager
5
- from polyaxon.polyflow import V1Hyperband, V1Optimization, V1RandomSearch
5
+ from polyaxon.schemas import V1Hyperband, V1Optimization, V1RandomSearch
6
6
 
7
7
 
8
8
  class HyperbandManager(BaseManager):
@@ -6,7 +6,7 @@ from hypertune.matrix.hyperopt import to_hyperopt
6
6
  from hypertune.matrix.utils import space_get_index, to_numpy
7
7
  from hypertune.search_managers.base import BaseManager
8
8
  from hypertune.search_managers.utils import get_random_generator
9
- from polyaxon.polyflow import (
9
+ from polyaxon.schemas import (
10
10
  V1HpChoice,
11
11
  V1HpGeomSpace,
12
12
  V1HpLinSpace,
@@ -3,7 +3,7 @@ import copy
3
3
  from typing import Dict, List, Optional
4
4
 
5
5
  from hypertune.search_managers.base import BaseManager
6
- from polyaxon.polyflow import V1Mapping
6
+ from polyaxon.schemas import V1Mapping
7
7
 
8
8
 
9
9
  class MappingManager(BaseManager):
@@ -8,7 +8,7 @@ from hypertune.matrix.utils import get_length, sample
8
8
  from hypertune.search_managers.base import BaseManager
9
9
  from hypertune.search_managers.spec import SuggestionSpec
10
10
  from hypertune.search_managers.utils import get_random_generator
11
- from polyaxon.polyflow import V1RandomSearch
11
+ from polyaxon.schemas import V1RandomSearch
12
12
 
13
13
 
14
14
  class RandomSearchManager(BaseManager):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: hypertune
3
- Version: 1.1.0rc39
3
+ Version: 1.1.0rc40
4
4
  Summary: A library for performing hyperparameter optimization with Polyaxon.
5
5
  Home-page: https://github.com/polyaxon/hypertune
6
6
  Author: Polyaxon, Inc.
File without changes
File without changes
File without changes