Skip to content

Commit af7ec02

Browse files
committed
Make minor changes
1 parent 7561bd6 commit af7ec02

File tree

2 files changed

+17
-17
lines changed

2 files changed

+17
-17
lines changed

articles/machine-learning/how-to-deploy-custom-container.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ To configure your Azure Machine Learning workspace, take the following steps:
195195
)
196196
```
197197

198-
For more information, see [Deploy and score a machine learning model by using an online endpoint](how-to-deploy-online-endpoints.md?view=azureml-api-2&tabs=python).
198+
For more information, see [Deploy and score a machine learning model by using an online endpoint](how-to-deploy-online-endpoints.md?view=azureml-api-2&tabs=python&preserve-view=true).
199199

200200
### Configure an online endpoint
201201

@@ -292,9 +292,9 @@ For more information about liveness and readiness probes, see [Configure Livenes
292292

293293
The API server that you choose determines the liveness and readiness routes. You identify that server in an earlier step when you test the container locally. In this article, the example deployment uses the same path for the liveness and readiness routes, because TF Serving only defines a liveness route. For other ways of defining the routes, see other examples.
294294

295-
#### Scoring route
295+
#### Scoring routes
296296

297-
The API server that you use provides a way to receive the payload to work on. In the context of machine learning inferencing, a server receives the input data via a specific route. Identify that route for your API server when you test the container locally in an earlier step. Specify that route when you define the deployment to create.
297+
The API server that you use provides a way to receive the payload to work on. In the context of machine learning inferencing, a server receives the input data via a specific route. Identify that route for your API server when you test the container locally in an earlier step. Specify that route as the scoring route when you define the deployment to create.
298298

299299
The successful creation of the deployment also updates the `scoring_uri` parameter of the endpoint. You can verify this fact by running the following command: `az ml online-endpoint show -n <endpoint-name> --query scoring_uri`.
300300

articles/machine-learning/includes/machine-learning-cli-sdk-v2-prereqs.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -10,26 +10,26 @@ ms.author: larryfr
1010

1111
* The Azure CLI and the `ml` extension or the Azure Machine Learning Python SDK v2:
1212

13-
# [Azure CLI](#tab/cli)
13+
# [Azure CLI](#tab/cli)
1414

15-
To install the Azure CLI and the `ml` extension, see [Install and set up the CLI (v2)](../how-to-configure-cli.md).
15+
To install the Azure CLI and the `ml` extension, see [Install and set up the CLI (v2)](../how-to-configure-cli.md).
1616

17-
The examples in this article assume that you use a Bash shell or a compatible shell. For example, you can use a shell on a Linux system or [Windows Subsystem for Linux](/windows/wsl/about).
17+
The examples in this article assume that you use a Bash shell or a compatible shell. For example, you can use a shell on a Linux system or [Windows Subsystem for Linux](/windows/wsl/about).
1818

19-
# [Python SDK](#tab/python)
19+
# [Python SDK](#tab/python)
2020

21-
To install the Python SDK v2, use the following command:
21+
To install the Python SDK v2, use the following command:
2222

23-
```bash
24-
pip install azure-ai-ml azure-identity
25-
```
23+
```bash
24+
pip install azure-ai-ml azure-identity
25+
```
2626

27-
To update an existing installation of the SDK to the latest version, use the following command:
27+
To update an existing installation of the SDK to the latest version, use the following command:
2828

29-
```bash
30-
pip install --upgrade azure-ai-ml azure-identity
31-
```
29+
```bash
30+
pip install --upgrade azure-ai-ml azure-identity
31+
```
3232

33-
For more information, see [Azure ML Package client library for Python](https://aka.ms/sdk-v2-install).
33+
For more information, see [Azure ML Package client library for Python](https://aka.ms/sdk-v2-install).
3434

35-
---
35+
---

0 commit comments

Comments
 (0)