1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
# ---------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# ---------------------------------------------------------
__path__ = __import__("pkgutil").extend_path(__path__, __name__)
from azure.ai.ml.entities._job.job_limits import SweepJobLimits
from azure.ai.ml.entities._job.sweep.early_termination_policy import (
BanditPolicy,
MedianStoppingPolicy,
TruncationSelectionPolicy,
)
from azure.ai.ml.entities._job.sweep.objective import Objective
from azure.ai.ml.entities._job.sweep.sampling_algorithm import (
BayesianSamplingAlgorithm,
GridSamplingAlgorithm,
RandomSamplingAlgorithm,
SamplingAlgorithm,
)
from azure.ai.ml.entities._job.sweep.search_space import (
Choice,
LogNormal,
LogUniform,
Normal,
QLogNormal,
QLogUniform,
QNormal,
QUniform,
Randint,
Uniform,
)
from azure.ai.ml.entities._job.sweep.sweep_job import SweepJob
__all__ = [
"SweepJob",
"SweepJobLimits",
"Choice",
"Normal",
"LogNormal",
"QNormal",
"QLogNormal",
"Randint",
"Uniform",
"QUniform",
"LogUniform",
"QLogUniform",
"BanditPolicy",
"MedianStoppingPolicy",
"TruncationSelectionPolicy",
"SamplingAlgorithm",
"RandomSamplingAlgorithm",
"GridSamplingAlgorithm",
"BayesianSamplingAlgorithm",
"Objective",
]
|