diff --git a/_config.yml b/_config.yml index 1e9d100..8fb89ea 100644 --- a/_config.yml +++ b/_config.yml @@ -17,3 +17,8 @@ markdown: kramdown kramdown: syntax_highlighter_opts: disable : true +defaults: + - scope: + path: "docs/06-automate-model-training.md" + values: + render_with_liquid: false diff --git a/docs/07-deploy-monitor.md b/docs/07-deploy-monitor.md index cfd6103..2f6fc93 100644 --- a/docs/07-deploy-monitor.md +++ b/docs/07-deploy-monitor.md @@ -69,6 +69,21 @@ First, you create or reuse an Azure Machine Learning workspace and the data asse > Ignore any messages that say that extensions couldn't be installed. 1. Wait for the script to finish. It creates a resource group, an Azure Machine Learning workspace, compute resources, and the data assets you need for this lab. + +1. Register the extra resource providers that managed online endpoints require, so registration finishes before you reach the deployment step later in this lab: + + ```azurecli + az provider register --namespace Microsoft.PolicyInsights + az provider register --namespace Microsoft.Cdn + ``` + + To check whether a provider is already registered, run: + + ```azurecli + az provider show --namespace Microsoft.PolicyInsights --query registrationState -o tsv + ``` + + A result of `Registered` means no action is needed. 1. In the Azure portal, go to **Resource groups** and open the `rg-ai300-...` resource group that was created. 1. Select the Azure Machine Learning workspace (for example, `mlw-ai300-...`) and then select **Launch studio** to open Azure Machine Learning studio. 1. In the studio, select **Data** and verify that you have the following data assets: diff --git a/infra/setup1.sh b/infra/setup1.sh index 030014f..d16540a 100644 --- a/infra/setup1.sh +++ b/infra/setup1.sh @@ -45,4 +45,4 @@ az ml compute create --name ${COMPUTE_CLUSTER} --size STANDARD_DS11_V2 --max-ins # Create data assets echo "Create training data asset:" az ml data create --type mltable --name "diabetes-training" --path ../data/diabetes-data -az ml data create --type uri_file --name "diabetes-data" --path ../data/diabetes-data/diabetes.csv +az ml data create --type uri_file --name "diabetes-data" --path ../data/diabetes-data/diabetes.csv \ No newline at end of file