Changing display name of pipeline job via rest call to batch endpoint in Azure Machine Learning

32 views Asked by At

I have deployed a pipeline to a batch endpoint in Azure Machine Learning. When I call the REST Api to create a job run a generic job display name is created automatically. How can I modify the job name in the REST call? There seems to be no documentation on it.

I tried to specify "name": "" And "display_name" and "job_name" but it doesnt work

1

There are 1 answers

3
JayashankarGS On

As per this documentation you can configure the experimentName under properties.

Example Json body.

{
    "properties": {
        "InputData": {
           "heart_dataset": {
               "JobInputType" : "UriFolder",
               "Uri": "https://azuremlexampledata.blob.core.windows.net/data/heart-disease-uci/data"
           }
        },
        "properties":
        {
            "experimentName": "my-batch-job-experiment"
        }
    }
}

Note : This is only valid for pipeline component deployments.