gpt4 book ai didi

python - Azure 容器实例部署失败

转载 作者:行者123 更新时间:2023-12-01 08:09:25 26 4
gpt4 key购买 nike

我正在根据 this article 将机器学习镜像从 Azure 机器学习服务部署到 Azure 容器实例。 ,但我总是被错误消息困扰:

Aci Deployment failed with exception: Your container application crashed. This may be caused by errors in your scoring file's init() function.
Please check the logs for your container instance xxxxxxx'.

我尝试过:

  1. 增加 aci_config 中的 memory_gb=4。
  2. 我做到了 troubleshooting在本地,但我找不到。

下面是我的分数.py

def init():
global model
model_path = Model.get_model_path('pofc_fc_model')
model = joblib.load(model_path)

def run(raw_data):
data = np.array(json.loads(raw_data)['data'])
y_hat = model.predict(data)
return y_hat.tolist()

最佳答案

您是否已使用模型对象上的 register() 函数在工作区中注册了模型'pofc_fc_model'?否则,将没有模型路径并可能导致失败。

请参阅有关模型注册的部分:https://learn.microsoft.com/en-us/azure/machine-learning/service/how-to-deploy-and-where#registermodel

关于python - Azure 容器实例部署失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55353889/

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