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
Copy file name to clipboardExpand all lines: articles/machine-learning/how-to-setup-mlops-github-azureml.md
+6-2Lines changed: 6 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -229,7 +229,7 @@ This training pipeline contains the following steps:
229
229
- Input: Trained model and the deploy flag.
230
230
- Output: Registered model in Azure Machine Learning.
231
231
232
-
## Deploying the Model Training Pipeline to the Test Environment
232
+
## Deploying the Model Training Pipeline
233
233
234
234
Next, you will deploy the model training pipeline to your new Azure 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.
235
235
@@ -252,7 +252,7 @@ With the trained model registered in the Azure Machine learning workspace, you a
252
252
253
253
### Deploying the Trained Model
254
254
255
-
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 workflowsto test the performance of the model in your Azure ML workspace.
255
+
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.
256
256
257
257
1. In your GitHub project repository (ex: taxi-fare-regression), select **Actions**
258
258
@@ -268,6 +268,10 @@ This scenario includes prebuilt workflows for two approaches to deploying a trai
1. To test this deployment, go to the **Endpoints** tab in your AzureML workspace, select the endpoint and click the **Test** Tab. You can use the sample input data located in the cloned repo at `/data/taxi-request.json` to test the endpoint.
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 Azure Machine Learning workspace, then create a deployment of your model to this endpoint.
0 commit comments