Azure 机器学习:这是什么错误?
Azure Machine Learning: What error is this?
我正在为 Azure 数据工厂上的更新资源 activity 使用具有非默认终结点的经典 Web 服务。这是我得到的错误:
Screenshot of Error
我没有在网上找到任何信息,也无法自己弄明白。 This 网站显示了我使用的示例,只需填写 mlEndpoint、apiKey 和 updateRessourceEndpoint 的值:
{
"name": "updatableScoringEndpoint2",
"properties": {
"type": "AzureML",
"typeProperties": {
"mlEndpoint": "https://ussouthcentral.services.azureml.net/workspaces/xxx/services/--scoring experiment--/jobs",
"apiKey": "endpoint2Key",
"updateResourceEndpoint": "https://management.azureml.net/workspaces/xxx/webservices/--scoring experiment--/endpoints/endpoint2"
}
}
}
没有提到需要传递的令牌...
这个错误基本上是说您提供的apiKey无效,无法执行更新资源操作。这里有一些帖子供您参考:https://social.msdn.microsoft.com/Forums/azure/en-US/3bb77e37-8860-43c6-bcaa-d6ebd70617b8/retrain-predictive-web-service-programmatically-when-do-not-have-access-to-managementazuremlnet?forum=MachineLearning
另请注意,如果您在 ADF 中修改了链接服务,请记得重新部署管道以及时反映您的更改。
我正在为 Azure 数据工厂上的更新资源 activity 使用具有非默认终结点的经典 Web 服务。这是我得到的错误:
Screenshot of Error
我没有在网上找到任何信息,也无法自己弄明白。 This 网站显示了我使用的示例,只需填写 mlEndpoint、apiKey 和 updateRessourceEndpoint 的值:
{
"name": "updatableScoringEndpoint2",
"properties": {
"type": "AzureML",
"typeProperties": {
"mlEndpoint": "https://ussouthcentral.services.azureml.net/workspaces/xxx/services/--scoring experiment--/jobs",
"apiKey": "endpoint2Key",
"updateResourceEndpoint": "https://management.azureml.net/workspaces/xxx/webservices/--scoring experiment--/endpoints/endpoint2"
}
}
}
没有提到需要传递的令牌...
这个错误基本上是说您提供的apiKey无效,无法执行更新资源操作。这里有一些帖子供您参考:https://social.msdn.microsoft.com/Forums/azure/en-US/3bb77e37-8860-43c6-bcaa-d6ebd70617b8/retrain-predictive-web-service-programmatically-when-do-not-have-access-to-managementazuremlnet?forum=MachineLearning
另请注意,如果您在 ADF 中修改了链接服务,请记得重新部署管道以及时反映您的更改。