英文:
Problem with Azure Machine learning and batch endpoint
问题
我使用自动机器学习创建了一个模型,显然我使用了最佳模型,并创建了一个批处理端点。通过Azure数据工厂,我正在调用批处理端点,但我不知道为什么当作业开始时,它立即失败并显示以下错误:
无法获取图像详细信息:环境batch-inference-ncd-env中不存在图像mcr.microsoft.com/mcr.microsoft.com/azureml/curated/azureml-automl:141于注册表中。
它应该能够运行,或者至少应该能够启动。
英文:
I created a model with automl, obviously I used the best model and I created a batch endpoint. With Azure Data factory I'm calling the batch endpoint and I don't know why but when the job starts it fails immediately with this error:
Unable to get image details : Image mcr.microsoft.com/mcr.microsoft.com/azureml/curated/azureml-automl:141 for environment batch-inference-ncd-env does not exist in registry..
It could run, or at least it has to start.
答案1
得分: 1
我已经根据情景复制了这个问题。
似乎图像的 URL 不正确:mcr.microsoft.com/mcr.microsoft.com/azureml/curated/azureml-automl:141
。URL 中有重复的 mcr.microsoft.com
。
为了解决这个问题,您应该在批处理端点配置中将图像 URL 更新为正确的 URL。
正确的图像 URL 应该是这样的:
mcr.microsoft.com/azureml/curated/azureml-automl:141
。
使用新的部署配置更新端点,端点应该正常工作。
英文:
I have reproduced the issue based on the scenario.
It seems like the image URL is incorrect: mcr.microsoft.com/mcr.microsoft.com/azureml/curated/azureml-automl:141
. There is a duplicate mcr.microsoft.com
in the URL.
To resolve this issue, you should update the image URL in your batch endpoint configuration to the correct one.
The correct image URL should look like this:
mcr.microsoft.com/azureml/curated/azureml-automl:141
.
update the endpoint with new deployment configuration and the endpoint should work fine.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论