gpt4 book ai didi

Azure AutoML 下载指标

转载 作者:行者123 更新时间:2023-12-02 07:45:01 25 4
gpt4 key购买 nike

我想知道是否有办法在 Azure 中的 AutoML 中完成运行后下载模型的指标?例如,我想将生成的混淆矩阵与其他可用指标一起下载为 png 文件。

最佳答案

您可以使用AutoMLRunget_output() 方法来执行此操作 - 查看 this notebook example .

如果您使用 UI 创建 AutoML 运行,或者需要之前提交的运行的输出,则必须创建新的 AutoMLRun()使用 Experiment 对象和 run_id 的实例,如下所示。

import azureml.core
from azureml.core.experiment import Experiment
from azureml.core.workspace import Workspace
froom azureml.train.automl.run import AutoMLRun

ws = Workspace.from_config()
experiment_name = 'YOUREXPERIMENTNAME'
experiment = Experiment(ws, experiment_name)

run_automl = AutoMLRun(experiment, run_id="YOUR RUN ID")

best_run, fitted_model = remote_run.get_output()

关于Azure AutoML 下载指标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62563340/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com