Skip to content

Commit e113705

Browse files
Acrolinx
1 parent f98b65d commit e113705

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

articles/machine-learning/how-to-setup-mlops-github-azure-ml.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ Before you can set up an MLOps project with Machine Learning, you need to set up
138138

139139
1. Then select **Secrets**, then **Actions**:
140140

141-
:::image type="content" source="./media/how-to-setup-mlops-azureml/github-secrets.png" alt-text="Screenshot ofGitHub Secrets.":::
141+
:::image type="content" source="./media/how-to-setup-mlops-azureml/github-secrets.png" alt-text="Screenshot of GitHub Secrets.":::
142142

143143
1. Select **New repository secret**. Name this secret **AZURE_CREDENTIALS** and paste the service principal output as the content of the secret. Select **Add secret**.
144144
:::image type="content" source="./media/how-to-setup-mlops-azureml/github-secrets-string.png" alt-text="Screenshot of GitHub Secrets String 1.":::
@@ -178,7 +178,7 @@ This config file uses the namespace and postfix values the names of the artifact
178178
```
179179
> [!NOTE]
180180
> If you are running a Deep Learning workload such as CV or NLP, ensure your GPU compute is available in your deployment zone.
181-
> The enable_monitoring flag in these files defaults to False. Enabling this flag will add additional elements to the deployment to support Azure ML monitoring based on https://github.com/microsoft/AzureML-Observability. This will include an ADX cluster and increase the deployment time and cost of the MLOps solution.
181+
> The enable_monitoring flag in these files defaults to False. Enabling this flag will add additional elements to the deployment to support Azure Machine Learning monitoring based on https://github.com/microsoft/AzureML-Observability. This will include an ADX cluster and increase the deployment time and cost of the MLOps solution.
182182
183183
### Deploy Machine Learning infrastructure
184184
@@ -190,15 +190,15 @@ This config file uses the namespace and postfix values the names of the artifact
190190
191191
:::image type="content" source="./media/how-to-setup-mlops-azureml/github-workflows.png" alt-text="Screenshot of GitHub workflows.":::
192192
193-
1. Select would be **tf-gha-deploy-infra.yml**. This would deploy the Azure ML infrastructure using GitHub Actions and Terraform.
193+
1. Select would be **tf-gha-deploy-infra.yml**. This would deploy the Machine Learning infrastructure using GitHub Actions and Terraform.
194194
195195
:::image type="content" source="./media/how-to-setup-mlops-azureml/github-deploy-infrastructure.png" alt-text="Screenshot of GitHub deploy infrastructure.":::
196196
197197
1. On the right side of the page, select **Run workflow** and select the branch to run the workflow on. This may deploy Dev Infrastructure if you've created a dev branch or Prod infrastructure if deploying from main. Monitor the workflow for successful completion.
198198

199199
:::image type="content" source="./media/how-to-setup-mlops-azureml/github-infrastructure-pipeline.png" alt-text="Screenshot of GitHub infrastructure pipeline.":::
200200

201-
1. When the pipeline has complete successfully, you can find your Azure ML Workspace and associated resources by logging in to the Azure Portal. Next, a model training and scoring pipelines will be deployed into the new Machine Learning environment.
201+
1. When the pipeline has complete successfully, you can find your Azure Machine Learning Workspace and associated resources by logging in to the Azure Portal. Next, a model training and scoring pipelines will be deployed into the new Machine Learning environment.
202202

203203

204204
## Sample Training and Deployment Scenario
@@ -230,7 +230,7 @@ This training pipeline contains the following steps:
230230

231231
## Deploying the Model Training Pipeline
232232

233-
Next, you will deploy the model training pipeline to your new Machine Learning workspace. This pipeline will create a compute cluster instance, register a training environment defining the necessary Docker image and python packages, register a training dataset, then start the training pipeline described in the last section. When the job is complete, the trained model will be registered in the Azure ML workspace and be available for deployment.
233+
Next, you will deploy the model training pipeline to your new Machine Learning workspace. This pipeline will create a compute cluster instance, register a training environment defining the necessary Docker image and python packages, register a training dataset, then start the training pipeline described in the last section. When the job is complete, the trained model will be registered in the Azure Machine Learning workspace and be available for deployment.
234234

235235
1. In your GitHub project repository (example: taxi-fare-regression), select **Actions**
236236

@@ -251,7 +251,7 @@ With the trained model registered in the Machine learning workspace, you are rea
251251

252252
### Deploying the Trained Model
253253

254-
This scenario includes prebuilt workflows for two approaches to deploying a trained model, batch scoring or a deploying a model to an endpoint for real-time scoring. You may run either or both of these workflows to test the performance of the model in your Azure ML workspace.
254+
This scenario includes prebuilt workflows for two approaches to deploying a trained model, batch scoring or a deploying a model to an endpoint for real-time scoring. You may run either or both of these workflows to test the performance of the model in your Azure Machine Learning workspace.
255255

256256
### Online Endpoint
257257

@@ -263,7 +263,7 @@ This scenario includes prebuilt workflows for two approaches to deploying a trai
263263

264264
:::image type="content" source="./media/how-to-setup-mlops-azureml/github-online-endpoint.png" alt-text="Screenshot of GitHub action for online endpoint.":::
265265

266-
Once completed, you will find the online endpoint deployed in the Azure ML workspace and available for testing.
266+
Once completed, you will find the online endpoint deployed in the Azure Machine Learning workspace and available for testing.
267267

268268
:::image type="content" source="./media/how-to-setup-mlops-azureml/azure-ml-taxi-online-endpoint.png" alt-text="Screenshot of Machine Learning taxi online endpoint.":::
269269

@@ -279,11 +279,11 @@ This scenario includes prebuilt workflows for two approaches to deploying a trai
279279

280280
1. Select the **deploy-batch-endpoint-pipeline** from the workflows and click **Run workflow** to execute the batch endpoint deployment pipeline workflow. The steps in this pipeline will create a new AmlCompute cluster on which to execute batch scoring, create the batch endpoint in your Machine Learning workspace, then create a deployment of your model to this endpoint.
281281

282-
:::image type="content" source="./media/how-to-setup-mlops-azureml/github-batch-endpoint.png" alt-text="Screenshot of GitHub action for batch endpoint":::
282+
:::image type="content" source="./media/how-to-setup-mlops-azureml/github-batch-endpoint.png" alt-text="Screenshot of GitHub action for batch endpoint.":::
283283

284-
2. Once completed, you will find the batch endpoint deployed in the Azure ML workspace and available for testing.
284+
2. Once completed, you will find the batch endpoint deployed in the Azure Machine Learning workspace and available for testing.
285285

286-
:::image type="content" source="./media/how-to-setup-mlops-azureml/azure-ml-taxi-batch-endpoint.png" alt-text="Screenshot of Machine Learning taxi batch endpoint":::
286+
:::image type="content" source="./media/how-to-setup-mlops-azureml/azure-ml-taxi-batch-endpoint.png" alt-text="Screenshot of Machine Learning taxi batch endpoint.":::
287287

288288
## Moving to production
289289

0 commit comments

Comments
 (0)