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-deploy-custom-container.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
@@ -195,7 +195,7 @@ To configure your Azure Machine Learning workspace, take the following steps:
195
195
)
196
196
```
197
197
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).
199
199
200
200
### Configure an online endpoint
201
201
@@ -292,9 +292,9 @@ For more information about liveness and readiness probes, see [Configure Livenes
292
292
293
293
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.
294
294
295
-
#### Scoring route
295
+
#### Scoring routes
296
296
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.
298
298
299
299
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`.
Copy file name to clipboardExpand all lines: articles/machine-learning/includes/machine-learning-cli-sdk-v2-prereqs.md
+14-14Lines changed: 14 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,26 +10,26 @@ ms.author: larryfr
10
10
11
11
* The Azure CLI and the `ml` extension or the Azure Machine Learning Python SDK v2:
12
12
13
-
# [Azure CLI](#tab/cli)
13
+
# [Azure CLI](#tab/cli)
14
14
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).
16
16
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).
18
18
19
-
# [Python SDK](#tab/python)
19
+
# [Python SDK](#tab/python)
20
20
21
-
To install the Python SDK v2, use the following command:
21
+
To install the Python SDK v2, use the following command:
22
22
23
-
```bash
24
-
pip install azure-ai-ml azure-identity
25
-
```
23
+
```bash
24
+
pip install azure-ai-ml azure-identity
25
+
```
26
26
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:
28
28
29
-
```bash
30
-
pip install --upgrade azure-ai-ml azure-identity
31
-
```
29
+
```bash
30
+
pip install --upgrade azure-ai-ml azure-identity
31
+
```
32
32
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).
0 commit comments