Get-AzMlWebService 命令在更新现有 ML 模型时不返回任何内容
Get-AzMlWebService command not returning anything while updating existing ML model
我在 Azure 机器学习工作室(经典版)中创建并部署了一个机器学习训练模型和一个 Web 服务。我已通过批处理执行使用新数据重新训练模型,训练后的输出模型作为 ilearner 文件存储在 Azure Blob 存储中。现在,我正尝试通过文档中提到的 Azure powershell 使用新的 Web 服务更新以前的 Web 服务。它使用 Connect-AzAccount cmdlet 连接到 Azure 帐户,但没有为 Get-AzMlWebService cmdlet 提供任何输出。我还尝试了很多命令变体(带有实验名称和资源组名称)
感谢任何帮助。非常感谢您。
尝试Get-AmlWebService
of the classic module。
# Get all classic Web Services in Workspace
$webServices = Get-AmlWebService
# Display them in table format
$webServices | Format-Table Id,Name,EndpointCount
# Get metadata of a specific classic Web Service with Id stored in $webSvcId
Get-AmlWebService -WebServiceId $webSvcId
我在 Azure 机器学习工作室(经典版)中创建并部署了一个机器学习训练模型和一个 Web 服务。我已通过批处理执行使用新数据重新训练模型,训练后的输出模型作为 ilearner 文件存储在 Azure Blob 存储中。现在,我正尝试通过文档中提到的 Azure powershell 使用新的 Web 服务更新以前的 Web 服务。它使用 Connect-AzAccount cmdlet 连接到 Azure 帐户,但没有为 Get-AzMlWebService cmdlet 提供任何输出。我还尝试了很多命令变体(带有实验名称和资源组名称)
感谢任何帮助。非常感谢您。
尝试Get-AmlWebService
of the classic module。
# Get all classic Web Services in Workspace
$webServices = Get-AmlWebService
# Display them in table format
$webServices | Format-Table Id,Name,EndpointCount
# Get metadata of a specific classic Web Service with Id stored in $webSvcId
Get-AmlWebService -WebServiceId $webSvcId