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
#Customer intent: As a data scientist, I want to figure out why my online endpoint deployment failed so that I can fix it.
@@ -34,10 +34,12 @@ The [HTTP status codes](#http-status-codes) section explains how invocation and
34
34
35
35
# [Azure CLI](#tab/cli)
36
36
37
+
- An Azure Machine Learning workspace.
37
38
- The [Azure CLI](/cli/azure/install-azure-cli) and Azure Machine Learning CLI v2. [Install, set up, and use the CLI (v2)](how-to-configure-cli.md).
38
39
39
40
# [Python SDK](#tab/python)
40
41
42
+
- An Azure Machine Learning workspace.
41
43
- The Azure Machine Learning Python SDK v2. [Install the Azure Machine Learning SDK v2 for Python](/python/api/overview/azure/ai-ml-readme).
42
44
43
45
### [Studio](#tab/studio)
@@ -316,16 +318,20 @@ Due to a lack of Azure Machine Learning capacity in the region, the service fail
316
318
317
319
To run the *score.py* file you provide as part of the deployment, Azure creates a container that includes all the resources that the *score.py* needs. Azure Machine Learning then runs the scoring script on that container. If your container can't start, scoring can't happen. The container might be requesting more resources than the `instance_type` can support. Consider updating the `instance_type` of the online deployment.
318
320
319
-
To get the exact reason for the error, run the following command:
321
+
To get the exact reason for the error, take the following action.
320
322
321
323
# [Azure CLI](#tab/cli)
322
324
325
+
Run the following command:
326
+
323
327
```azurecli
324
328
az ml online-deployment get-logs -e <endpoint-name> -n <deployment-name> -l 100
The user model might not be found. [Check the container logs](#get-container-logs) to get more details. Make sure you registered the model to the same workspace as the deployment.
387
393
388
-
To show details for a model in a workspace, run the following command. You must specify either version or label to get the model information.
394
+
To show details for a model in a workspace, take the following action. You must specify either version or label to get the model information.
389
395
390
396
# [Azure CLI](#tab/cli)
391
397
392
-
```azurecli
398
+
Run the following command:
399
+
400
+
```azurecli
393
401
az ml model show --name <model-name> --version <version>
0 commit comments