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-use-batch-model-deployments.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,9 +33,9 @@ Use batch endpoints for model deployment when:
33
33
34
34
In this article, you use a batch endpoint to deploy a machine learning model that solves the classic MNIST (Modified National Institute of Standards and Technology) digit recognition problem. Your deployed model then performs batch inferencing over large amounts of data—in this case, image files. You begin by creating a batch deployment of a model that was created using Torch. This deployment becomes the default one in the endpoint. Later, you [create a second deployment](#add-deployments-to-an-endpoint) of a mode that was created with TensorFlow (Keras), test the second deployment, and then set it as the endpoint's default deployment.
35
35
36
-
## Quick reference: Inputs, outputs, and configuration options
36
+
## Key concepts and configurations
37
37
38
-
Before diving into the details, here's a quick reference to help you understand the key concepts:
38
+
Review the sections below to understand the key concepts and configurations used in this article.
39
39
40
40
### Data flow overview
41
41
-__Input data__: Files or folders in Azure Storage (blob storage, data lake, or registered datasets)
@@ -90,7 +90,7 @@ The workspace is the top-level resource for Azure Machine Learning, providing a
90
90
91
91
```python
92
92
from azure.ai.ml import MLClient, Input, load_component
93
-
from azure.ai.ml.entities import BatchEndpoint, ModelBatchDeployment, ModelBatchDeploymentSettings, PipelineComponentBatchDeployment, Model, AmlCompute, Data, BatchRetrySettings, CodeConfiguration, Environment, Data
0 commit comments