【发布时间】:2018-06-10 17:56:36
【问题描述】:
我在创建 Azure 机器学习批处理执行活动以执行评分 ML 实验时遇到以下问题。请帮忙:
如果需要任何其他相关信息,请告诉我。我是新手,请帮忙
-
创建如下 AzureML 链接服务:
{ "name": "PredictionAzureML", "properties": { "typeProperties": { "mlEndpoint": "https://ussouthcentral.services.azureml.net/workspaces/xxxxx/jobs", "apiKey": "xxxxxxxx==" }, "type": "AzureML" } } -
创建的管道如下:
{ "name": "pipeline1", "properties": { "description": "use AzureML model", "activities": [ { "name": "MLActivity", "description": "description", "type": "AzureMLBatchExecution", "policy": { "timeout": "02:00:00", "retry": 1, "retryIntervalInSeconds": 30 }, "typeProperties": { "webServiceInput": "PredictionInputDataset", "webServiceOutputs": { "output1": "PredictionOutputDataset" } }, "inputs": [ { "name": "PredictionInputDataset" } ], "outputs": [ { "name": "PredictionOutputDataset" } ], "linkedServiceName": "PredictionAzureML" } ] } } -
得到以下错误:
{ "errorCode": "2109", "message": "'linkedservicereference' with reference name 'PredictionAzureML' can't be found.", "failureType": "UserError", "target": "MLActivity" }
【问题讨论】:
标签: azure-data-factory azure-machine-learning-studio azure-data-factory-2