Automatically Register Custom Models in Azure ML Studio Designer and Deploy Within Designer

168 views Asked by At

I am currently trying out different architectures with Azure ML Ecosystem. Currently, I am testing out Azure ML Studio Designer.

I want to create a complete End to End ML system, where I train several models and deploy the best.

The Pipeline Created: enter image description here

In the Designer, is it possible to register a custom-trained model(it will appear in the model assets in the workspace)? Also is it possible to directly deploy the best model within the Designer?

Not manually clicking on the job and Registering and Deploying but in a more automated way.

1

There are 1 answers

4
Sairam Tadepalli On BEST ANSWER

First, we need to create the designer manually and assign the deployment manually for the first time. Input for the next iteration will be the web service input. For that we need to get the web service output to be attached with the evaluation model metrics. For the next time it will be running in repeated state.

Follow the steps to make the automation for the case of designer deployment from the designer itself.

enter image description here

enter image description here

enter image description here

The above images are not being connected to the web service input for the automation.

enter image description here

The above image will be taking the result of automation of the web service to perform the continuous deployment.

Connect to the compute target.

enter image description here

enter image description here

Create new pipeline job

To deploy we need to have an inference cluster. It will be AKS by default.

enter image description here

enter image description here

enter image description here

enter image description here

We will get the inference pipeline like above. Get the details of the web service endpoint and deploy it with the web service. First time have to do it manually, next time it will work automatically.

enter image description here

Above is the total structure will look like in designer for automation of the deployment.