首页 > 解决方案 > 如何使用 CLI 或 SDK 在 Azure 机器学习服务中注册 900mb 的本地模型

问题描述

我有一个 900mb 型号和一个 9mb 型号。

我正在使用最新版本的 Azure ML CLI 使用以下命令在我的工作区中注册它:

az ml model register -n "rj-model" --model-path "models\model_v1.bin -t "model-deployment\model.json"

9mb 文件成功上传,但 900mb 文件超时并出现以下错误:

{'Azure-cli-ml Version': '1.0.60.1', 'Error': AzureHttpError('Operation could not be completed within the specified time. ErrorCode: OperationTimedOut\n<?xml version="1.0" encoding="utf-8"?><Error><Code>OperationTimedOut</Code><Message>Operation could not be completed within the specified time.\nRequestId:2822b750-801e-0061-65fe-71aa88000000\nTime:2019-09-23T11:03:52.5521518Z</Message></Error>',)}

UI 的超时阈值更低。

我对解决这个问题的想法:

所以我的问题是:如何在 Azure ML 中注册大型模型?

标签: azure-machine-learning-service

解决方案


推荐阅读