aboutsummaryrefslogtreecommitdiff
path: root/.venv/lib/python3.12/site-packages/azure/ai/ml/_internal/__init__.py
blob: 14fbaf87e83757e70947deb54543d345f29c49b1 (about) (plain)
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
# ---------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# ---------------------------------------------------------

from ._setup import enable_internal_components_in_pipeline
from .entities import (
    Ae365exepool,
    AISuperComputerConfiguration,
    AISuperComputerScalePolicy,
    AISuperComputerStorageReferenceConfiguration,
    Command,
    DataTransfer,
    Distributed,
    HDInsight,
    Hemera,
    InternalInput,
    ITPConfiguration,
    ITPInteractiveConfiguration,
    ITPPriorityConfiguration,
    ITPResourceConfiguration,
    ITPRetrySettings,
    Parallel,
    Pipeline,
    Scope,
    Starlite,
    TargetSelector,
)

# enable internal components if users has imported this module directly
enable_internal_components_in_pipeline()

__all__ = [
    "TargetSelector",
    "ITPInteractiveConfiguration",
    "ITPPriorityConfiguration",
    "ITPResourceConfiguration",
    "ITPRetrySettings",
    "ITPConfiguration",
    "AISuperComputerConfiguration",
    "AISuperComputerScalePolicy",
    "AISuperComputerStorageReferenceConfiguration",
    "Command",
    "Distributed",
    "Parallel",
    "Scope",
    "DataTransfer",
    "Ae365exepool",
    "HDInsight",
    "Starlite",
    "Pipeline",
    "Hemera",
    "InternalInput",
]