blob: c1745e09287d98be6c1fea41b75a9eae0cac92d6 (
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
|
# ---------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# ---------------------------------------------------------
class DeploymentType(object):
K8S = "Kubernetes"
MANAGED = "Managed"
class BatchDeploymentOutputAction:
APPEND_ROW = "append_row"
SUMMARY_ONLY = "summary_only"
class BatchDeploymentType:
MODEL = "model"
PIPELINE = "pipeline"
class EndpointDeploymentLogContainerType(object):
STORAGE_INITIALIZER_REST = "StorageInitializer"
INFERENCE_SERVER_REST = "InferenceServer"
INFERENCE_SERVER = "inference-server"
STORAGE_INITIALIZER = "storage-initializer"
SmallSKUs = ["standard_ds1_v2", "standard_ds2_v2"]
DEFAULT_MDC_PATH = "azureml://datastores/workspaceblobstore/paths/modelDataCollector"
|