在创建 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" }