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

CodeConfiguration 类

评分作业的代码配置。

继承
azure.ai.ml.entities._mixins.DictMixin
CodeConfiguration

构造函数

CodeConfiguration(code: str | PathLike | None = None, scoring_script: str | PathLike | None = None)

参数

名称 说明
code
Optional[Union[<xref:azure.ai.ml.entities.Code>, str]]

包含评分脚本的代码目录。 代码可以是 Code 对象、现有代码资产的 ARM 资源 ID、本地路径或指向远程位置的“http:”、“https:”或“azureml:”URL。

默认值: None
scoring_script

相对于代码目录的评分脚本文件路径。

默认值: None

示例

为 BatchDeployment 创建 CodeConfiguration。


   from azure.ai.ml.entities import BatchDeployment, CodeConfiguration

   deployment = BatchDeployment(
       name="non-mlflow-deployment",
       description="this is a sample non-mlflow deployment",
       endpoint_name="my-batch-endpoint",
       model=model,
       code_configuration=CodeConfiguration(
           code="configs/deployments/model-2/onlinescoring", scoring_script="score1.py"
       ),
       environment="env",
       compute="cpu-cluster",
       instance_count=2,
       max_concurrency_per_instance=2,
       mini_batch_size=10,
       output_file_name="predictions.csv",
   )

方法

get
has_key
items
keys
update
values

get

get(key: Any, default: Any | None = None) -> Any

参数

名称 说明
key
必需
default
默认值: None

has_key

has_key(k: Any) -> bool

参数

名称 说明
k
必需

items

items() -> list

keys

keys() -> list

update

update(*args: Any, **kwargs: Any) -> None

values

values() -> list

属性

scoring_script

相对于代码目录的评分脚本文件路径。

返回

类型 说明
str