This repo uses Azure Machine Learning Python SDK v1 and is not actively maintained. For Azure Machine Learning Python SDK v2 examples, see https://github.com/Azure/azureml-examples.
This repo shows an E2E training and deployment pipeline with Azure Machine Learning's CLI. For more info, please visit Azure Machine Learning CLI documentation.
This example requires some familiarity with Azure Pipelines or GitHub Actions. For more information, see here.
First, fork (or clone) the repository to your own GitHub account, so that you can make modification to your pipelines. From there, follow these instructions to get the whole setup and demo up and running:
📄 Detailed step-by-step setup instructions 📄
If you are familar with Azure Machine Learning and Azure DevOps, you can follow these shortend instructions:
- Fork or clone this repo
- Create an Azure Machine Learning workspace named
aml-demo
in a resource group namedaml-demo
- Create a new project in Azure DevOps/Pipelines
- Goto
Project settings
, selectService connections
, create a new connection of typeAzure Resource Manager
, selectService principal (automatic)
and configure it to theResource Group
of your Machine Learning workspace. Name itazmldemows
. For more details see here or follow the tutorial. - Create a new pipeline for the project, point it to the
pipelines/diabetes-train-and-deploy.yml
file in your forked GitHub repo. This defines an example pipeline. - Modify the
pipelines/diabetes-train-and-deploy.yml
and change theml-rg
variable to the Azure resource group that contains your workspace. You may also change theml-ws
variable to the name of your Azure Machine Learning service workspace. - Run the pipeline.
In case you want to leverage an existing ML workspace, you can customize it in the example pipeline pipelines/diabetes-train-and-deploy.yml
:
- ml-ws-connection: 'azmldemows' # Workspace Service Connection name
- ml-ws: 'aml-demo' # AML Workspace name
- ml-rg: 'aml-demo' # AML resource Group name
- ml-ct: 'cpu-cluster-1' # AML Compute cluster name
- ml-path: 'models/diabetes' # Model directory path in repo
- ml-exp: 'exp-test' # Experiment name
- ml-model-name: 'diabetes-model' # Model name
- ml-aks-name: 'aks-prod' # AKS cluster name
You can also manually emulate the example pipeline on your machine by running the following commands (make sure to substitue the variables from above):
az extension add -n azure-cli-ml
cd models/diabetes/
az ml folder attach -w $(ml-ws) -g $(ml-rg)
az ml computetarget create amlcompute -n $(ml-ct) --vm-size STANDARD_D2_V2 --max-nodes 1
az ml run submit-script -c config/train --ct $(ml-ct) -e $(ml-exp) -t run.json train.py
az ml model register -n $(ml-model-name) -f run.json --asset-path outputs/ridge_0.95.pkl -t model.json
az ml model deploy -n diabetes-qa-aci -f model.json --ic config/inference-config.yml --dc config/deployment-config-aci.yml --overwrite
az ml computetarget create aks --name $(ml-aks-name) --cluster-purpose DevTest
az ml model deploy --name diabetes-prod-aks --ct $(ml-aks-name) -f model.json --ic config/inference-config.yml --dc config/deployment-config-aks.yml --overwrite
If you want to scope your project to your Azure Machine Learning service workspace, you can install the Machine Learning DevOps extension in your Azure DevOps project.