Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
15 changes: 15 additions & 0 deletions docs/07-deploy-monitor.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion infra/setup1.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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