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
The system will generate the Model and Environment needed for the deployment.
47
47
48
-
:::image type="content" source="media/how-to-deploy-automl-endpoint/model.png" lightbox="media/how-to-deploy-automl-endpoint/model.png" alt-text="Screenshot showing the generated Model":::
49
-
50
-
:::image type="content" source="media/how-to-deploy-automl-endpoint/environment.png" lightbox="media/how-to-deploy-automl-endpoint/environment.png" alt-text="Screenshot showing the generated Environment":::
51
-
52
-
5. Complete the wizard to deploy the model to an online endpoint
53
-
54
-
:::image type="content" source="media/how-to-deploy-automl-endpoint/complete-wizard.png" lightbox="media/how-to-deploy-automl-endpoint/complete-wizard.png" alt-text="Screenshot showing the review-and-create page":::
55
-
48
+
:::image type="content" source="media/how-to-deploy-automl-endpoint/deploy-model.png" alt-text="Screenshot shows the deployment page where you can change values and then select Deploy.":::
56
49
57
50
## Deploy manually from the studio or command line
58
51
@@ -61,28 +54,35 @@ If you wish to have more control over the deployment, you can download the train
61
54
To download the components you'll need for deployment:
62
55
63
56
1. Go to your Automated ML experiment and run in your machine learning workspace
64
-
1. Choose the Models tab
57
+
1. Choose the **Models + child jobs** tab
65
58
1. Select the model you wish to use. Once you select a model, the *Download* button will become enabled
66
59
1. Choose *Download*
67
60
68
61
:::image type="content" source="media/how-to-deploy-automl-endpoint/download-model.png" lightbox="media/how-to-deploy-automl-endpoint/download-model.png" alt-text="Screenshot showing the selection of the model and download button":::
69
62
70
63
You'll receive a zip file containing:
71
-
* A conda environment specification file named `conda_env_<VERSION>.yml`
72
-
* A Python scoring file named `scoring_file_<VERSION>.py`
73
-
* The model itself, in a Python `.pkl` file named `model.pkl`
64
+
65
+
- A conda environment specification file named `conda_env_<VERSION>.yml`
66
+
- A Python scoring file named `scoring_file_<VERSION>.py`
67
+
- The model itself, in a Python `.pkl` file named `model.pkl`
74
68
75
69
To deploy using these files, you can use either the studio or the Azure CLI.
76
70
77
71
# [Studio](#tab/Studio)
72
+
<!-- Note to self - tim - this section in flux. verify before committing. -->
73
+
1. Go to the **Models** page in Azure Machine Learning studio
78
74
79
-
1. Go to the Models page in Azure Machine Learning studio
80
-
81
-
1. Select + Register Model option
75
+
1. Select **+ Register** > **From local files** option
76
+
1. Browse to the model saved locally and select Next.
77
+
1. Enter a name and select Next.
78
+
1. Select Register.
82
79
83
80
1. Register the model you downloaded from Automated ML run
84
81
85
-
1. Go to Environments page, select Custom environment, and select + Create option to create an environment for your deployment. Use the downloaded conda yaml to create a custom environment
82
+
1. Go to Environments page, select **Custom environments**, and select + Create option to create an environment for your deployment. Use the downloaded conda yaml to create a custom environment
83
+
1. Select an environment source and Next.
84
+
1. Select Next to step through the next pages, then select Create.
85
+
1. Select environment source > Create a new docker context
86
86
87
87
1. Select the model, and from the Deploy drop-down option, select Deploy to real-time endpoint
88
88
@@ -147,7 +147,7 @@ You'll need to modify this file to use the files you downloaded from the AutoML
147
147
> [!NOTE]
148
148
> For a full description of the YAML, see [Online endpoint YAML reference](reference-yaml-endpoint-online.md).
0 commit comments