你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

BatchDeployment 类

Batch 终结点部署实体。

继承
azure.ai.ml.entities._deployment.deployment.Deployment
BatchDeployment

构造函数

BatchDeployment(*, name: str, endpoint_name: str | None = None, description: str | None = None, tags: Dict[str, Any] | None = None, properties: Dict[str, str] | None = None, model: str | Model | None = None, code_configuration: CodeConfiguration | None = None, environment: str | Environment | None = None, compute: str | None = None, resources: ResourceConfiguration | None = None, output_file_name: str | None = None, output_action: BatchDeploymentOutputAction | None = None, error_threshold: int | None = None, retry_settings: BatchRetrySettings | None = None, logging_level: str | None = None, mini_batch_size: int | None = None, max_concurrency_per_instance: int | None = None, environment_variables: Dict[str, str] | None = None, code_path: str | PathLike | None = None, scoring_script: str | PathLike | None = None, instance_count: int | None = None, **kwargs)

参数

name
str
必需

批处理部署的名称

description
str
必需

资源的说明。

tags
dict[str, str]
必需

标记字典。 可以添加、删除和更新标记。

properties
dict[str, str]
必需

资产属性字典。

model
Union[str, Model]
必需

终结点部署的模型实体,默认为 None

code_configuration
CodeConfiguration
必需

默认值为 None

environment
Union[str, Environment]
必需

终结点部署的环境实体,默认为 None

compute
str
必需

批量推理操作的计算目标。

output_action
strBatchDeploymentOutputAction
必需

指示输出的组织方式。 可能的值包括:“summary_only”、“append_row”。 默认为“append_row”

output_file_name
str
必需

append_row输出操作的自定义输出文件名,默认为“predictions.csv”

max_concurrency_per_instance
int
必需

指示每个实例的最大并行数,默认值为 1

error_threshold
int
必需

错误阈值,如果整个输入的错误计数超过此值,则批处理推理将中止。 范围为 [-1, int.MaxValue] -1 值指示,在批处理推理过程中忽略所有失败。对于 FileDataset 文件失败计数,对于 TabularDataset,这是记录失败的计数,默认为 -1

retry_settings
BatchRetrySettings
必需

批量推理操作的重试设置,默认为“无”

resources
ResourceConfiguration
必需

指示作业的计算配置。

logging_level
str
必需

批量推理操作的日志记录级别,默认为“info”

mini_batch_size
int
必需

传递给每个批处理调用的微型批的大小,默认值为 10

environment_variables
dict
必需

将在部署中设置的环境变量。

code_path
Union[str, <xref:PathLike>]
必需

本地代码资产的文件夹路径。 等效于 code_configuration.code。

scoring_script
Union[str, <xref:PathLike>]
必需

评分脚本名称。 等效于 code_configuration.code.scoring_script。

instance_count
int
必需

将运行干扰的实例数。 等效于 resources.instance_count。

方法

dump

将部署内容转储到 yaml 格式的文件中。

dump

将部署内容转储到 yaml 格式的文件中。

dump(dest: str | PathLike | IO, **kwargs) -> None

参数

dest
Union[PathLike, str, IO[AnyStr]]
必需

接收此部署内容的目标。 必须是本地文件的路径或已打开的文件流。 如果 dest 是文件路径,则将创建一个新文件,如果该文件存在,则会引发异常。 如果 dest 是一个打开的文件,则该文件将直接写入,如果该文件不可写,则会引发异常。

属性

base_path

资源的基路径。

返回

资源的基路径。

返回类型

str

code_path

creation_context

资源的创建上下文。

返回

资源的创建元数据。

返回类型

id

资源 ID。

返回

资源的全局 ID,Azure 资源管理器 (ARM) ID。

返回类型

instance_count

provisioning_state

批量部署预配状态,只读。

返回

批处理部署预配状态。

返回类型

scoring_script

type