Skip to content

Commit 28b8edb

Browse files
authored
Update how-to-nlp-processing-batch.md
1 parent 7b87ab4 commit 28b8edb

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/machine-learning/how-to-nlp-processing-batch.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ The model we are going to work with was built using the popular library transfor
2929

3030
The information in this article is based on code samples contained in the [azureml-examples](https://github.com/azure/azureml-examples) repository. To run the commands locally without having to copy/paste YAML and other files, clone the repo and then change directories to the [`cli/endpoints/batch/deploy-models/huggingface-text-summarization`](https://github.com/azure/azureml-examples/tree/main/cli/endpoints/batch/deploy-models/huggingface-text-summarization) if you are using the Azure CLI or [`sdk/python/endpoints/batch/deploy-models/huggingface-text-summarization`](https://github.com/azure/azureml-examples/tree/main/sdk/python/endpoints/batch/deploy-models/huggingface-text-summarization) if you are using our SDK for Python.
3131

32-
# [Azure CLI](#tab/azure-cli)
32+
# [Azure CLI](#tab/cli)
3333

3434
```azurecli
3535
git clone https://github.com/Azure/azureml-examples --depth 1
@@ -59,7 +59,7 @@ You can follow along this sample in a Jupyter Notebook. In the cloned repository
5959

6060
First, let's connect to Azure Machine Learning workspace where we're going to work on.
6161

62-
# [Azure CLI](#tab/azure-cli)
62+
# [Azure CLI](#tab/cli)
6363

6464
```azurecli
6565
az account set --subscription <subscription>
@@ -134,7 +134,7 @@ We are going to create a batch endpoint named `text-summarization-batch` where t
134134

135135
1. Decide on the name of the endpoint. The name of the endpoint will end-up in the URI associated with your endpoint. Because of that, __batch endpoint names need to be unique within an Azure region__. For example, there can be only one batch endpoint with the name `mybatchendpoint` in `westus2`.
136136

137-
# [Azure CLI](#tab/azure-cli)
137+
# [Azure CLI](#tab/cli)
138138

139139
In this case, let's place the name of the endpoint in a variable so we can easily reference it later.
140140

@@ -152,7 +152,7 @@ We are going to create a batch endpoint named `text-summarization-batch` where t
152152
153153
1. Configure your batch endpoint
154154
155-
# [Azure CLI](#tab/azure-cli)
155+
# [Azure CLI](#tab/cli)
156156
157157
The following YAML file defines a batch endpoint:
158158
@@ -236,7 +236,7 @@ Let's create the deployment that will host the model:
236236
237237
1. Each deployment runs on compute clusters. They support both [Azure Machine Learning Compute clusters (AmlCompute)](./how-to-create-attach-compute-cluster.md) or [Kubernetes clusters](./how-to-attach-kubernetes-anywhere.md). In this example, our model can benefit from GPU acceleration, which is why we will use a GPU cluster.
238238

239-
# [Azure CLI](#tab/azure-cli)
239+
# [Azure CLI](#tab/cli)
240240

241241
:::code language="azurecli" source="~/azureml-examples-main/cli/endpoints/batch/deploy-models/huggingface-text-summarization/deploy-and-run.sh" ID="create_compute" :::
242242

0 commit comments

Comments
 (0)