Skip to content

Commit 68b0592

Browse files
committed
removed duplicate import
1 parent a58c296 commit 68b0592

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/machine-learning/how-to-use-batch-model-deployments.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ Use batch endpoints for model deployment when:
3333

3434
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.
3535

36-
## Quick reference: Inputs, outputs, and configuration options
36+
## Key concepts and configurations
3737

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.
3939

4040
### Data flow overview
4141
- __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
9090

9191
```python
9292
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
93+
from azure.ai.ml.entities import BatchEndpoint, ModelBatchDeployment, ModelBatchDeploymentSettings, PipelineComponentBatchDeployment, Model, AmlCompute, Data, BatchRetrySettings, CodeConfiguration, Environment
9494
from azure.ai.ml.constants import AssetTypes, BatchDeploymentOutputAction
9595
from azure.ai.ml.dsl import pipeline
9696
from azure.identity import DefaultAzureCredential

0 commit comments

Comments
 (0)