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-online-endpoints.md
+5-7Lines changed: 5 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -364,8 +364,7 @@ To define the endpoint and deployment, this article uses the ARM templates [onli
364
364
365
365
## Understand the scoring script
366
366
367
-
> [!TIP]
368
-
> The format of the scoring script for online endpoints is the same format that's used in the preceding version of the CLI and in the Python SDK.
367
+
The format of the scoring script for online endpoints is the same format that's used in the preceding version of the CLI and in the Python SDK.
369
368
370
369
# [Azure CLI](#tab/cli)
371
370
The scoring script specified in `code_configuration.scoring_script` must have an `init()` function and a `run()` function.
@@ -406,8 +405,7 @@ We *highly recommend* that you test run your endpoint locally to validate and de
406
405
407
406
To deploy locally, [Docker Engine](https://docs.docker.com/engine/install/) must be installed and running. Docker Engine typically starts when the computer starts. If it doesn't, you can [troubleshoot Docker Engine](https://docs.docker.com/config/daemon/#start-the-daemon-manually).
408
407
409
-
> [!TIP]
410
-
> You can use the [Azure Machine Learning inference HTTP server Python package](how-to-inference-server-http.md) to debug your scoring script locally *without Docker Engine*. Debugging with the inference server helps you to debug the scoring script before you deploy to local endpoints so that you can debug without being affected by the deployment container configurations.
408
+
You can use the [Azure Machine Learning inference HTTP server Python package](how-to-inference-server-http.md) to debug your scoring script locally *without Docker Engine*. Debugging with the inference server helps you to debug the scoring script before you deploy to local endpoints so that you can debug without being affected by the deployment container configurations.
411
409
412
410
For more information on debugging online endpoints locally before you deploy to Azure, see [Online endpoint debugging](concept-endpoints-online.md#online-endpoint-debugging).
413
411
@@ -598,9 +596,9 @@ Next, deploy your online endpoint to Azure. As a best practice for production, w
598
596
599
597
We recommend that you register your model and environment before deployment to Azure so that you can specify their registered names and versions during deployment. After you register your assets, you can reuse them without the need to upload them every time you create deployments. This practice increases reproducibility and traceability.
600
598
601
-
> [!NOTE]
602
-
> Unlike deployment to Azure, local deployment doesn't support using registered models and environments. Instead, local deployment uses local model files and uses environments with local files only.
603
-
> For deployment to Azure, you can use either local or registered assets (models and environments). In this section of the article, the deployment to Azure uses registered assets, but you have the option of using local assets instead. For an example of a deployment configuration that uploads local files to use for local deployment, see [Configure a deployment](#configure-a-deployment).
599
+
Unlike deployment to Azure, local deployment doesn't support using registered models and environments. Instead, local deployment uses local model files and uses environments with local files only.
600
+
601
+
For deployment to Azure, you can use either local or registered assets (models and environments). In this section of the article, the deployment to Azure uses registered assets, but you have the option of using local assets instead. For an example of a deployment configuration that uploads local files to use for local deployment, see [Configure a deployment](#configure-a-deployment).
0 commit comments