You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
:::image type="content" source="./media/how-to-setup-mlops-azureml/github-secrets.png" alt-text="Screenshot of GitHub Secrets.":::
142
142
143
143
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**.
144
144
:::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
178
178
```
179
179
> [!NOTE]
180
180
> 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.
182
182
183
183
### Deploy Machine Learning infrastructure
184
184
@@ -190,15 +190,15 @@ This config file uses the namespace and postfix values the names of the artifact
190
190
191
191
:::image type="content" source="./media/how-to-setup-mlops-azureml/github-workflows.png" alt-text="Screenshot of GitHub workflows.":::
192
192
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.
194
194
195
195
:::image type="content" source="./media/how-to-setup-mlops-azureml/github-deploy-infrastructure.png" alt-text="Screenshot of GitHub deploy infrastructure.":::
196
196
197
197
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.
198
198
199
199
:::image type="content" source="./media/how-to-setup-mlops-azureml/github-infrastructure-pipeline.png" alt-text="Screenshot of GitHub infrastructure pipeline.":::
200
200
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.
202
202
203
203
204
204
## Sample Training and Deployment Scenario
@@ -230,7 +230,7 @@ This training pipeline contains the following steps:
230
230
231
231
## Deploying the Model Training Pipeline
232
232
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.
234
234
235
235
1. In your GitHub project repository (example: taxi-fare-regression), select**Actions**
236
236
@@ -251,7 +251,7 @@ With the trained model registered in the Machine learning workspace, you are rea
251
251
252
252
### Deploying the Trained Model
253
253
254
-
This scenario includes prebuilt workflows fortwo 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 modelin your Azure ML workspace.
254
+
This scenario includes prebuilt workflows fortwo 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 modelin your Azure Machine Learning workspace.
255
255
256
256
### Online Endpoint
257
257
@@ -263,7 +263,7 @@ This scenario includes prebuilt workflows for two approaches to deploying a trai
263
263
264
264
:::image type="content" source="./media/how-to-setup-mlops-azureml/github-online-endpoint.png" alt-text="Screenshot of GitHub action for online endpoint.":::
265
265
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.
267
267
268
268
:::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.":::
269
269
@@ -279,11 +279,11 @@ This scenario includes prebuilt workflows for two approaches to deploying a trai
279
279
280
280
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.
281
281
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.":::
283
283
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.
285
285
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.":::
0 commit comments