Batch endpoints provide a convenient way to deploy models that run inference over large volumes of data. These endpoints simplify the process of hosting your models for batch scoring, so that your focus is on machine learning, rather than the infrastructure.
Use batch endpoints for model deployment when:
You have expensive models that require a longer time to run inference.
You need to perform inference over large amounts of data that is distributed in multiple files.
You don't have low latency requirements.
You can take advantage of parallelization.
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 of a mode that was created with TensorFlow (Keras), test the second deployment, and then set it as the endpoint's default deployment.
To follow along with the code samples and files needed to run the commands in this article locally, see the Clone the examples repository section. The code samples and files are contained in the azureml-examples repository.
Prerequisites
Before you follow the steps in this article, make sure you have the following prerequisites:
An Azure Machine Learning workspace. If you don't have one, use the steps in the How to manage workspaces article to create one.
To perform the following tasks, ensure that you have these permissions in the workspace:
To create/manage batch endpoints and deployments: Use owner role, contributor role, or a custom role allowing Microsoft.MachineLearningServices/workspaces/batchEndpoints/*.
To create ARM deployments in the workspace resource group: Use owner role, contributor role, or a custom role allowing Microsoft.Resources/deployments/write in the resource group where the workspace is deployed.
You need to install the following software to work with Azure Machine Learning:
There are no further requirements if you plan to use Azure Machine Learning studio.
Clone the examples repository
The example in this article is based on code samples contained in the azureml-examples repository. To run the commands locally without having to copy/paste YAML and other files, first clone the repo and then change directories to the folder:
First, connect to the Azure Machine Learning workspace where you'll work.
If you haven't already set the defaults for the Azure CLI, save your default settings. To avoid passing in the values for your subscription, workspace, resource group, and location multiple times, run this code:
az account set --subscription <subscription>
az configure --defaults workspace=<workspace> group=<resource-group> location=<location>
The workspace is the top-level resource for Azure Machine Learning, providing a centralized place to work with all the artifacts you create when you use Azure Machine Learning. In this section, you connect to the workspace in which you'll perform deployment tasks.
Import the required libraries:
from azure.ai.ml import MLClient, Input, load_component
from azure.ai.ml.entities import BatchEndpoint, ModelBatchDeployment, ModelBatchDeploymentSettings, PipelineComponentBatchDeployment, Model, AmlCompute, Data, BatchRetrySettings, CodeConfiguration, Environment, Data
from azure.ai.ml.constants import AssetTypes, BatchDeploymentOutputAction
from azure.ai.ml.dsl import pipeline
from azure.identity import DefaultAzureCredential
Note
Classes ModelBatchDeployment and PipelineComponentBatchDeployment were introduced in version 1.7.0 of the SDK.
Configure workspace details and get a handle to the workspace:
Create a compute named batch-cluster, as shown in the following code. You can adjust as needed and reference your compute using azureml:<your-compute-name>.
You're not charged for the compute at this point, as the cluster remains at 0 nodes until a batch endpoint is invoked and a batch scoring job is submitted. For more information about compute costs, see Manage and optimize cost for AmlCompute.
Create a batch endpoint
A batch endpoint is an HTTPS endpoint that clients can call to trigger a batch scoring job. A batch scoring job is a job that scores multiple inputs. A batch deployment is a set of compute resources hosting the model that does the actual batch scoring (or batch inferencing). One batch endpoint can have multiple batch deployments. For more information on batch endpoints, see What are batch endpoints?.
Tip
One of the batch deployments serves as the default deployment for the endpoint. When the endpoint is invoked, the default deployment does the actual batch scoring. For more information on batch endpoints and deployments, see batch endpoints and batch deployment.
Name the endpoint. The endpoint's name must be unique within an Azure region, since the name is included in the endpoint's URI. For example, there can be only one batch endpoint with the name mybatchendpoint in westus2.
The following YAML file defines a batch endpoint. You can use this file with the CLI command for batch endpoint creation.
endpoint.yml
$schema: https://azuremlschemas.azureedge.net/latest/batchEndpoint.schema.json
name: mnist-batch
description: A batch endpoint for scoring images from the MNIST dataset.
tags:
type: deep-learning
The following table describes the key properties of the endpoint. For the full batch endpoint YAML schema, see CLI (v2) batch endpoint YAML schema.
Key
Description
name
The name of the batch endpoint. Needs to be unique at the Azure region level.
description
The description of the batch endpoint. This property is optional.
tags
The tags to include in the endpoint. This property is optional.
endpoint = BatchEndpoint(
name=endpoint_name,
description="A batch endpoint for scoring images from the MNIST dataset.",
tags={"type": "deep-learning"},
)
The following table describes the key properties of the endpoint. For more information on batch endpoint definition, see BatchEndpoint Class.
Key
Description
name
The name of the batch endpoint. Needs to be unique at the Azure region level.
description
The description of the batch endpoint. This property is optional.
tags
The tags to include in the endpoint. This property is optional.
You create the endpoint later, at the point when you create the deployment.
You create the endpoint later, at the point when you create the deployment.
Create a batch deployment
A model deployment is a set of resources required for hosting the model that does the actual inferencing. To create a batch model deployment, you need the following items:
A registered model in the workspace
The code to score the model
An environment with the model's dependencies installed
The pre-created compute and resource settings
Begin by registering the model to be deployed—a Torch model for the popular digit recognition problem (MNIST). Batch Deployments can only deploy models that are registered in the workspace. You can skip this step if the model you want to deploy is already registered.
Tip
Models are associated with the deployment, rather than with the endpoint. This means that a single endpoint can serve different models (or model versions) under the same endpoint, provided that the different models (or model versions) are deployed in different deployments.
Configure the name of the model: mnist-classifier-torch. You can leave the rest of the fields as they are.
Select Register.
Now it's time to create a scoring script. Batch deployments require a scoring script that indicates how a given model should be executed and how input data must be processed. Batch endpoints support scripts created in Python. In this case, you deploy a model that reads image files representing digits and outputs the corresponding digit. The scoring script is as follows:
Note
For MLflow models, Azure Machine Learning automatically generates the scoring script, so you're not required to provide one. If your model is an MLflow model, you can skip this step. For more information about how batch endpoints work with MLflow models, see the article Using MLflow models in batch deployments.
Warning
If you're deploying an Automated machine learning (AutoML) model under a batch endpoint, note that the scoring script that AutoML provides only works for online endpoints and is not designed for batch execution. For information on how to create a scoring script for your batch deployment, see Author scoring scripts for batch deployments.
deployment-torch/code/batch_driver.py
import os
import pandas as pd
import torch
import torchvision
import glob
from os.path import basename
from mnist_classifier import MnistClassifier
from typing import List
def init():
global model
global device
# AZUREML_MODEL_DIR is an environment variable created during deployment
# It is the path to the model folder
model_path = os.environ["AZUREML_MODEL_DIR"]
model_file = glob.glob(f"{model_path}/*/*.pt")[-1]
model = MnistClassifier()
model.load_state_dict(torch.load(model_file))
model.eval()
device = torch.device("cuda:0" if torch.cuda.is_available() else "cpu")
def run(mini_batch: List[str]) -> pd.DataFrame:
print(f"Executing run method over batch of {len(mini_batch)} files.")
results = []
with torch.no_grad():
for image_path in mini_batch:
image_data = torchvision.io.read_image(image_path).float()
batch_data = image_data.expand(1, -1, -1, -1)
input = batch_data.to(device)
# perform inference
predict_logits = model(input)
# Compute probabilities, classes and labels
predictions = torch.nn.Softmax(dim=-1)(predict_logits)
predicted_prob, predicted_class = torch.max(predictions, axis=-1)
results.append(
{
"file": basename(image_path),
"class": predicted_class.numpy()[0],
"probability": predicted_prob.numpy()[0],
}
)
return pd.DataFrame(results)
Create an environment where your batch deployment will run. The environment should include the packages azureml-core and azureml-dataset-runtime[fuse], which are required by batch endpoints, plus any dependency your code requires for running. In this case, the dependencies have been captured in a conda.yaml file:
The environment definition will be included in the deployment definition itself as an anonymous environment. You'll see in the following lines in the deployment:
Navigate to the Environments tab on the side menu.
Select the tab Custom environments > Create.
Enter the name of the environment, in this case torch-batch-env.
For Select environment source, select Use existing docker image with optional conda file.
For Container registry image path, enter mcr.microsoft.com/azureml/openmpi4.1.0-ubuntu20.04.
Select Next to go to the "Customize" section.
Copy the content of the file deployment-torch/environment/conda.yaml from the GitHub repo into the portal.
Select Next until you get to the "Review page".
Select Create and wait until the environment is ready for use.
Warning
Curated environments are not supported in batch deployments. You need to specify your own environment. You can always use the base image of a curated environment as yours to simplify the process.
$schema: https://azuremlschemas.azureedge.net/latest/modelBatchDeployment.schema.json
name: mnist-torch-dpl
description: A deployment using Torch to solve the MNIST classification dataset.
endpoint_name: mnist-batch
type: model
model:
name: mnist-classifier-torch
path: model
code_configuration:
code: code
scoring_script: batch_driver.py
environment:
name: batch-torch-py38
image: mcr.microsoft.com/azureml/openmpi4.1.0-ubuntu20.04:latest
conda_file: environment/conda.yaml
compute: azureml:batch-cluster
resources:
instance_count: 1
settings:
max_concurrency_per_instance: 2
mini_batch_size: 10
output_action: append_row
output_file_name: predictions.csv
retry_settings:
max_retries: 3
timeout: 30
error_threshold: -1
logging_level: info
The following table describes the key properties of the batch deployment. For the full batch deployment YAML schema, see CLI (v2) batch deployment YAML schema.
Key
Description
name
The name of the deployment.
endpoint_name
The name of the endpoint to create the deployment under.
model
The model to be used for batch scoring. The example defines a model inline using path. This definition allows model files to be automatically uploaded and registered with an autogenerated name and version. See the Model schema for more options. As a best practice for production scenarios, you should create the model separately and reference it here. To reference an existing model, use the azureml:<model-name>:<model-version> syntax.
code_configuration.code
The local directory that contains all the Python source code to score the model.
code_configuration.scoring_script
The Python file in the code_configuration.code directory. This file must have an init() function and a run() function. Use the init() function for any costly or common preparation (for example, to load the model in memory). init() will be called only once at the start of the process. Use run(mini_batch) to score each entry; the value of mini_batch is a list of file paths. The run() function should return a pandas DataFrame or an array. Each returned element indicates one successful run of input element in the mini_batch. For more information on how to author a scoring script, see Understanding the scoring script.
environment
The environment to score the model. The example defines an environment inline using conda_file and image. The conda_file dependencies will be installed on top of the image. The environment will be automatically registered with an autogenerated name and version. See the Environment schema for more options. As a best practice for production scenarios, you should create the environment separately and reference it here. To reference an existing environment, use the azureml:<environment-name>:<environment-version> syntax.
compute
The compute to run batch scoring. The example uses the batch-cluster created at the beginning and references it using the azureml:<compute-name> syntax.
resources.instance_count
The number of instances to be used for each batch scoring job.
settings.max_concurrency_per_instance
The maximum number of parallel scoring_script runs per instance.
settings.mini_batch_size
The number of files the scoring_script can process in one run() call.
settings.output_action
How the output should be organized in the output file. append_row will merge all run() returned output results into one single file named output_file_name. summary_only won't merge the output results and will only calculate error_threshold.
settings.output_file_name
The name of the batch scoring output file for append_rowoutput_action.
settings.retry_settings.max_retries
The number of max tries for a failed scoring_scriptrun().
settings.retry_settings.timeout
The timeout in seconds for a scoring_scriptrun() for scoring a mini batch.
settings.error_threshold
The number of input file scoring failures that should be ignored. If the error count for the entire input goes above this value, the batch scoring job will be terminated. The example uses -1, which indicates that any number of failures is allowed without terminating the batch scoring job.
settings.logging_level
Log verbosity. Values in increasing verbosity are: WARNING, INFO, and DEBUG.
settings.environment_variables
Dictionary of environment variable name-value pairs to set for each batch scoring job.
The BatchDeployment Class allows you to configure the following key properties of a batch deployment:
Key
Description
name
Name of the deployment.
endpoint_name
Name of the endpoint to create the deployment under.
model
The model to use for the deployment. This value can be either a reference to an existing versioned model in the workspace or an inline model specification.
environment
The environment to use for the deployment. This value can be either a reference to an existing versioned environment in the workspace or an inline environment specification (optional for MLflow models).
code_configuration
The configuration about how to run inference for the model (optional for MLflow models).
code_configuration.code
Path to the source code directory for scoring the model.
code_configuration.scoring_script
Relative path to the scoring file in the source code directory.
compute
Name of the compute target on which to execute the batch scoring jobs.
instance_count
The number of nodes to use for each batch scoring job.
settings
The model deployment inference configuration.
settings.max_concurrency_per_instance
The maximum number of parallel scoring_script runs per instance.
settings.mini_batch_size
The number of files the code_configuration.scoring_script can process in one run() call.
settings.retry_settings
Retry settings for scoring each mini batch.
settings.retry_settingsmax_retries
The maximum number of retries for a failed or timed-out mini batch (default is 3).
settings.retry_settingstimeout
The timeout in seconds for scoring a mini batch (default is 30).
settings.output_action
How the output should be organized in the output file. Allowed values are append_row or summary_only. Default is append_row.
settings.logging_level
The log verbosity level. Allowed values are warning, info, debug. Default is info.
settings.environment_variables
Dictionary of environment variable name-value pairs to set for each batch scoring job.
In the studio, follow these steps:
Navigate to the Endpoints tab on the side menu.
Select the tab Batch endpoints > Create.
Give the endpoint a name, in this case mnist-batch. You can configure the rest of the fields or leave them blank.
Select Next to go to the "Model" section.
Select the model mnist-classifier-torch.
Select Next to go to the "Deployment" page.
Give the deployment a name.
For Output action, ensure Append row is selected.
For Output file name, ensure the batch scoring output file is the one you need. Default is predictions.csv.
For Mini batch size, adjust the size of the files that will be included on each mini-batch. This size will control the amount of data your scoring script receives per batch.
For Scoring timeout (seconds), ensure you're giving enough time for your deployment to score a given batch of files. If you increase the number of files, you usually have to increase the timeout value too. More expensive models (like those based on deep learning), may require high values in this field.
For Max concurrency per instance, configure the number of executors you want to have for each compute instance you get in the deployment. A higher number here guarantees a higher degree of parallelization but it also increases the memory pressure on the compute instance. Tune this value altogether with Mini batch size.
Once done, select Next to go to the "Code + environment" page.
For "Select a scoring script for inferencing", browse to find and select the scoring script file deployment-torch/code/batch_driver.py.
In the "Select environment" section, select the environment you created previously torch-batch-env.
Select Next to go to the "Compute" page.
Select the compute cluster you created in a previous step.
Warning
Azure Kubernetes cluster are supported in batch deployments, but only when created using the Azure Machine Learning CLI or Python SDK.
For Instance count, enter the number of compute instances you want for the deployment. In this case, use 2.
Run the following code to create a batch deployment under the batch endpoint, and set it as the default deployment.
az ml batch-deployment create --file deployment-torch/deployment.yml --endpoint-name $ENDPOINT_NAME --set-default
Tip
The --set-default parameter sets the newly created deployment as the default deployment of the endpoint. It's a convenient way to create a new default deployment of the endpoint, especially for the first deployment creation. As a best practice for production scenarios, you might want to create a new deployment without setting it as default. Verify that the deployment works as you expect, and then update the default deployment later. For more information on implementing this process, see the Deploy a new model section.
Using the MLClient created earlier, create the deployment in the workspace. This command starts the deployment creation and returns a confirmation response while the deployment creation continues.
After creating the batch endpoint, the endpoint's details page opens up. You can also find this page by following these steps:
Navigate to the Endpoints tab on the side menu.
Select the tab Batch endpoints.
Select the batch endpoint you want to view.
The endpoint's Details page shows the details of the endpoint along with all the deployments available in the endpoint.
Run batch endpoints and access results
Invoking a batch endpoint triggers a batch scoring job. The job name is returned from the invoke response and can be used to track the batch scoring progress. When running models for scoring in batch endpoints, you need to specify the path to the input data so that the endpoints can find the data you want to score. The following example shows how to start a new job over a sample data of the MNIST dataset stored in an Azure Storage Account.
You can run and invoke a batch endpoint using Azure CLI, Azure Machine Learning SDK, or REST endpoints. For more details about these options, see Create jobs and input data for batch endpoints.
Note
How does parallelization work?
Batch deployments distribute work at the file level, which means that a folder containing 100 files with mini-batches of 10 files will generate 10 batches of 10 files each. Notice that this happens regardless of the size of the files involved. If your files are too big to be processed in large mini-batches, we suggest that you either split the files into smaller files to achieve a higher level of parallelism or you decrease the number of files per mini-batch. Currently, batch deployments can't account for skews in a file's size distribution.
JOB_NAME=$(az ml batch-endpoint invoke --name $ENDPOINT_NAME --input https://azuremlexampledata.blob.core.windows.net/data/mnist/sample --input-type uri_folder --query name -o tsv)
Tip
What's the difference between the inputs and input parameter when you invoke an endpoint?
In general, you can use a dictionary inputs = {} parameter with the invoke method to provide an arbitrary number of required inputs to a batch endpoint that contains a model deployment or a pipeline deployment.
For a model deployment, you can use the input parameter as a shorter way to specify the input data location for the deployment. This approach works because a model deployment always takes only one data input.
Select Next to go to the "Select data source" page.
For the "Data source type", select Datastore.
For the "Datastore", select workspaceblobstore from the dropdown menu.
For "Path", enter the full URL https://azuremlexampledata.blob.core.windows.net/data/mnist/sample.
Tip
This path works only because the given path has public access enabled. In general, you need to register the data source as a Datastore. See Accessing data from batch endpoints jobs for details.
Select Next.
Select Create to start the job.
Batch endpoints support reading files or folders that are located in different locations. To learn more about the supported types and how to specify them, see Accessing data from batch endpoints jobs.
Monitor batch job execution progress
Batch scoring jobs usually take some time to process the entire set of inputs.
The following code checks the job status and outputs a link to the Azure Machine Learning studio for further details.
az ml job show -n $JOB_NAME --web
The following code checks the job status and outputs a link to the Azure Machine Learning studio for further details.
ml_client.jobs.get(job.name)
Navigate to the Endpoints tab on the side menu.
Select the tab Batch endpoints.
Select the batch endpoint you want to monitor.
Select the Jobs tab.
From the displayed list of the jobs created for the selected endpoint, select the last job that is running.
You're now redirected to the job monitoring page.
Check batch scoring results
The job outputs are stored in cloud storage, either in the workspace's default blob storage, or the storage you specified. To learn how to change the defaults, see Configure the output location. The following steps allow you to view the scoring results in Azure Storage Explorer when the job is completed:
Run the following code to open the batch scoring job in Azure Machine Learning studio. The job studio link is also included in the response of invoke, as the value of interactionEndpoints.Studio.endpoint.
az ml job show -n $JOB_NAME --web
In the graph of the job, select the batchscoring step.
Select the Outputs + logs tab and then select Show data outputs.
From Data outputs, select the icon to open Storage Explorer.
The scoring results in Storage Explorer are similar to the following sample page:
Configure the output location
By default, the batch scoring results are stored in the workspace's default blob store within a folder named by job name (a system-generated GUID). You can configure where to store the scoring outputs when you invoke the batch endpoint.
Use output-path to configure any folder in an Azure Machine Learning registered datastore. The syntax for the --output-path is the same as --input when you're specifying a folder, that is, azureml://datastores/<datastore-name>/paths/<path-on-datastore>/. Use --set output_file_name=<your-file-name> to configure a new output file name.
OUTPUT_FILE_NAME=predictions_`echo $RANDOM`.csv
OUTPUT_PATH="azureml://datastores/workspaceblobstore/paths/$ENDPOINT_NAME"
JOB_NAME=$(az ml batch-endpoint invoke --name $ENDPOINT_NAME --input https://azuremlexampledata.blob.core.windows.net/data/mnist/sample --output-path $OUTPUT_PATH --set output_file_name=$OUTPUT_FILE_NAME --query name -o tsv)
Use params_override to configure any folder in an Azure Machine Learning registered data store. Only registered data stores are supported as output paths. In this example you use the default data store:
batch_ds = ml_client.datastores.get_default()
Once you've identified the data store you want to use, configure the output as follows:
For Deployment, select the deployment you want to execute.
Select the option Override deployment settings.
You can now configure Output file name and some extra properties of the deployment execution. Just this execution will be affected.
Select Next.
On the "Select data source" page, select the data input you want to use.
Select Next.
On the "Configure output location" page, select the option Enable output configuration.
Configure the Blob datastore where the outputs should be placed.
Warning
You must use a unique output location. If the output file exists, the batch scoring job will fail.
Important
Unlike inputs, outputs can be stored only in Azure Machine Learning data stores that run on blob storage accounts.
Overwrite deployment configuration for each job
When you invoke a batch endpoint, some settings can be overwritten to make best use of the compute resources and to improve performance. The following settings can be configured on a per-job basis:
Instance count: use this setting to overwrite the number of instances to request from the compute cluster. For example, for larger volume of data inputs, you might want to use more instances to speed up the end to end batch scoring.
Mini-batch size: use this setting to overwrite the number of files to include in each mini-batch. The number of mini batches is decided by the total input file counts and mini-batch size. A smaller mini-batch size generates more mini batches. Mini batches can be run in parallel, but there might be extra scheduling and invocation overhead.
Other settings, such as max retries, timeout, and error threshold can be overwritten. These settings might impact the end-to-end batch scoring time for different workloads.
For Deployment, select the deployment you want to execute.
Select the option Override deployment settings.
Configure the job parameters. Only the current job execution will be affected by this configuration.
Select Next.
On the "Select data source" page, select the data input you want to use.
Select Next.
On the "Configure output location" page, select the option Enable output configuration.
Configure the Blob datastore where the outputs should be placed.
Add deployments to an endpoint
Once you have a batch endpoint with a deployment, you can continue to refine your model and add new deployments. Batch endpoints will continue serving the default deployment while you develop and deploy new models under the same endpoint. Deployments don't affect one another.
In this example, you add a second deployment that uses a model built with Keras and TensorFlow to solve the same MNIST problem.
Add a second deployment
Create an environment where your batch deployment will run. Include in the environment any dependency your code requires for running. You also need to add the library azureml-core, as it's required for batch deployments to work. The following environment definition has the required libraries to run a model with TensorFlow.
import os
import numpy as np
import pandas as pd
import tensorflow as tf
from typing import List
from os.path import basename
from PIL import Image
from tensorflow.keras.models import load_model
def init():
global model
# AZUREML_MODEL_DIR is an environment variable created during deployment
model_path = os.path.join(os.environ["AZUREML_MODEL_DIR"], "model")
# load the model
model = load_model(model_path)
def run(mini_batch: List[str]) -> pd.DataFrame:
print(f"Executing run method over batch of {len(mini_batch)} files.")
results = []
for image_path in mini_batch:
data = Image.open(image_path)
data = np.array(data)
data_batch = tf.expand_dims(data, axis=0)
# perform inference
pred = model.predict(data_batch)
# Compute probabilities, classes and labels
pred_prob = tf.math.reduce_max(tf.math.softmax(pred, axis=-1)).numpy()
pred_class = tf.math.argmax(pred, axis=-1).numpy()
results.append(
{
"file": basename(image_path),
"class": pred_class[0],
"probability": pred_prob,
}
)
return pd.DataFrame(results)
$schema: https://azuremlschemas.azureedge.net/latest/modelBatchDeployment.schema.json
name: mnist-keras-dpl
description: A deployment using Keras with TensorFlow to solve the MNIST classification dataset.
endpoint_name: mnist-batch
type: model
model:
name: mnist-classifier-keras
path: model
code_configuration:
code: code
scoring_script: batch_driver.py
environment:
name: batch-tensorflow-py38
image: mcr.microsoft.com/azureml/openmpi4.1.0-ubuntu20.04:latest
conda_file: environment/conda.yaml
compute: azureml:batch-cluster
resources:
instance_count: 1
settings:
max_concurrency_per_instance: 2
mini_batch_size: 10
output_action: append_row
output_file_name: predictions.csv
deployment_keras = ModelBatchDeployment(
name="mnist-keras-dpl",
description="A deployment using Keras to solve the MNIST classification dataset.",
endpoint_name=endpoint_name,
model=model,
code_configuration=CodeConfiguration(
code="deployment-keras/code/", scoring_script="batch_driver.py"
),
environment=env,
compute=compute_name,
settings=ModelBatchDeploymentSettings(
instance_count=2,
max_concurrency_per_instance=2,
mini_batch_size=10,
output_action=BatchDeploymentOutputAction.APPEND_ROW,
output_file_name="predictions.csv",
retry_settings=BatchRetrySettings(max_retries=3, timeout=30),
logging_level="info",
),
)
Navigate to the Endpoints tab on the side menu.
Select the tab Batch endpoints.
Select the existing batch endpoint where you want to add the deployment.
Select Add deployment.
Select Next to go to the "Model" page.
From the model list, select the model mnist and select Next.
On the deployment configuration page, give the deployment a name.
Undo the selection for the option: Make this new deployment the default for batch jobs.
For Output action, ensure Append row is selected.
For Output file name, ensure the batch scoring output file is the one you need. Default is predictions.csv.
For Mini batch size, adjust the size of the files that will be included in each mini-batch. This will control the amount of data your scoring script receives for each batch.
For Scoring timeout (seconds), ensure you're giving enough time for your deployment to score a given batch of files. If you increase the number of files, you usually have to increase the timeout value too. More expensive models (like those based on deep learning), may require high values in this field.
For Max concurrency per instance, configure the number of executors you want to have for each compute instance you get in the deployment. A higher number here guarantees a higher degree of parallelization but it also increases the memory pressure on the compute instance. Tune this value altogether with Mini batch size.
Select Next to go to the "Code + environment" page.
For Select a scoring script for inferencing, browse to select the scoring script file deployment-keras/code/batch_driver.py.
For Select environment, select the environment you created in a previous step.
Select Next.
On the Compute page, select the compute cluster you created in a previous step.
For Instance count, enter the number of compute instances you want for the deployment. In this case, use 2.
Run the following code to create a batch deployment under the batch endpoint and set it as the default deployment.
az ml batch-deployment create --file deployment-keras/deployment.yml --endpoint-name $ENDPOINT_NAME
Tip
The --set-default parameter is missing in this case. As a best practice for production scenarios, create a new deployment without setting it as default. Then verify it, and update the default deployment later.
Using the MLClient created earlier, create the deployment in the workspace. This command starts the deployment creation and returns a confirmation response while the deployment creation continues.
DEPLOYMENT_NAME="mnist-keras-dpl"
JOB_NAME=$(az ml batch-endpoint invoke --name $ENDPOINT_NAME --deployment-name $DEPLOYMENT_NAME --input https://azuremlexampledata.blob.core.windows.net/data/mnist/sample --input-type uri_folder --query name -o tsv)
Notice --deployment-name is used to specify the deployment to execute. This parameter allows you to invoke a non-default deployment without updating the default deployment of the batch endpoint.
Notice deployment_name is used to specify the deployment to execute. This parameter allows you to invoke a non-default deployment without updating the default deployment of the batch endpoint.
Navigate to the Endpoints tab on the side menu.
Select the tab Batch endpoints.
Select the batch endpoint you just created.
Select Create job.
For Deployment, select the deployment you want to execute. In this case, mnist-keras.
Complete the job creation wizard to get the job started.
Update the default batch deployment
Although you can invoke a specific deployment inside an endpoint, you'll typically want to invoke the endpoint itself and let the endpoint decide which deployment to use—the default deployment. You can change the default deployment (and consequently, change the model serving the deployment) without changing your contract with the user invoking the endpoint. Use the following code to update the default deployment:
Find out how to access input data from various sources in Azure Machine Learning batch endpoint jobs. See code for the Azure CLI, the Python SDK, and REST API calls.
Learn how to deploy MLflow models in batch deployments with Azure Machine Learning, and test deployments, analyze outputs, and perform batch predictions.
Learn how to troubleshoot and diagnose errors with batch endpoints jobs, including examining logs for scoring jobs and solution steps for common issues.
Manage data ingestion and preparation, model training and deployment, and machine learning solution monitoring with Python, Azure Machine Learning and MLflow.