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
In this article, you learn how to deploy a designer model as an online (real-time) endpoint in Azure Machine Learning studio.
20
+
In this article, you learn how to deploy a designer model as a real-time, online endpoint in Azure Machine Learning studio.
21
21
22
22
Once registered or downloaded, you can use designer trained models just like any other model. Exported models can be deployed in use cases such as internet of things (IoT) and local deployments.
23
23
@@ -28,9 +28,9 @@ Deployment in the studio consists of the following steps:
28
28
1. (Optional) Configure the entry script.
29
29
1. Deploy the model to a compute target.
30
30
31
-
You can also deploy models directly in the designer to skip model registration and filedownload steps. This can be useful for rapid deployment. For more information, see [Deploy a model with the designer](tutorial-designer-automobile-price-deploy.md).
31
+
You can also deploy models directly in the designer to skip model registration and file-download steps. This can be useful for rapid deployment. For more information, see [Tutorial: Deploy a machine learning model using designer](tutorial-designer-automobile-price-deploy.md).
32
32
33
-
Models trained in the designer can also be deployed through the SDK or command-line interface (CLI). For more information, see [Deploy your existing model with Azure Machine Learning](how-to-deploy-and-where.md).
33
+
Models trained in the designer can also be deployed through the SDK or command-line interface (CLI). For more information, see [Deploy machine learning models to Azure](how-to-deploy-and-where.md).
34
34
35
35
## Prerequisites
36
36
@@ -58,7 +58,7 @@ After the training pipeline completes, register the trained model to your Azure
58
58
59
59
1. Select the **Outputs + logs** tab in the details pane.
60
60
61
-
1. Select **+ Register model**.
61
+
1. Select **Register model**.
62
62
63
63
:::image type="content" source="./media/how-to-deploy-model-designer/train-model-right-pane.png" alt-text="Screenshot of right pane of Train Model component." lightbox="./media/how-to-deploy-model-designer/train-model-right-pane.png":::
64
64
@@ -278,7 +278,7 @@ def run(data):
278
278
279
279
For **Wide & Deep Recommender** and **Vowpal Wabbit** models, you can configure the scoring mode parameter by using the following methods:
280
280
281
-
- The parameter names are the lowercase and underscore combinations of parameter names for [Score Vowpal Wabbit Model](../algorithm-module-reference/score-vowpal-wabbit-model.md) and [Score Wide and Deep Recommender](../algorithm-module-reference/score-wide-and-deep-recommender.md);
281
+
- The parameter names are the lowercase and underscore combinations of parameter names for [Score Vowpal Wabbit Model](../algorithm-module-reference/score-vowpal-wabbit-model.md) and [Score Wide and Deep Recommender](../algorithm-module-reference/score-wide-and-deep-recommender.md).
282
282
- Mode-type parameter values are strings of the corresponding option names. Take **Recommender prediction kind** in the preceding codes as an example, the value can be `'Rating Prediction'`or `'Item Recommendation'`. Other values aren't allowed.
283
283
284
284
For **SVD Recommender** trained model, the parameter names and values might be less obvious, and you can look up the following tables to decide how to set parameters.
In this article, you learn how to import your own data in the designer to create custom solutions. There are two ways you can import data into the designer:
20
+
In this article, you learn how to import your own data into the Azure Machine Learning designer to create custom solutions. There are two ways you can import data into the designer:
21
21
22
-
***Azure Machine Learning datasets**: Register [datasets](concept-data.md) in Azure Machine Learning to enable advanced features that help you manage your data.
22
+
***Azure Machine Learning datasets**: Register [datasets](concept-data.md#reference-data-in-storage-with-datasets) in Azure Machine Learning to enable advanced features that help you manage your data.
23
23
***Import Data component**: Use the [Import Data](../algorithm-module-reference/import-data.md) component to directly access data from online data sources.
24
24
25
25
> [!IMPORTANT]
26
26
> If you don't see graphical elements mentioned in this document, such as buttons in studio or designer, you might not have the right level of permissions to the workspace. Contact your Azure subscription administrator to verify that you have been granted the correct level of access. For more information, see [Manage users and roles](../how-to-assign-roles.md).
27
27
28
28
## Use Azure Machine Learning datasets
29
29
30
-
We recommend that you use [datasets](concept-data.md) to import data into the designer. When you register a dataset, you can take full advantage of advanced data features like [versioning and tracking](how-to-version-track-datasets.md) and [data monitoring](how-to-monitor-datasets.md).
30
+
We recommend that you use [datasets](concept-data.md#reference-data-in-storage-with-datasets) to import data into the designer. When you register a dataset, you can take full advantage of advanced data features like [versioning and tracking](how-to-version-track-datasets.md) and [data monitoring](how-to-monitor-datasets.md).
31
31
32
32
### Register a dataset
33
33
@@ -62,9 +62,9 @@ If you register a file dataset, the output port type of the dataset is **AnyDire
62
62
63
63
### Limitations
64
64
65
-
- Currently you can only visualize tabular dataset in the designer. If you register a file dataset outside designer, you can't visualize it in the designer canvas.
66
-
- Currently the designer only supports preview outputs which are stored in **Azure blob storage**. You can check and change your output datastore in the **Output settings** under **Parameters** tab in the right panel of the component.
67
-
- If your data is stored in virtual network and you want to preview, you need to enable workspace managed identity of the datastore.
65
+
- Currently you can only visualize a tabular dataset in the designer. If you register a file dataset outside designer, you can't visualize it in the designer canvas.
66
+
- Currently the designer only supports preview outputs that are stored in **Azure blob storage**. You can check and change your output datastore in the **Output settings** under **Parameters** tab in the right panel of the component.
67
+
- If your data is stored in a virtual network and you want to preview, you need to enable workspace managed identity of the datastore.
68
68
1. Go the related datastore and select **Update authentication**.
69
69
:::image type="content" source="../media/resource-known-issues/datastore-update-credential.png" alt-text="Screenshot that shows how to update credentials.":::
70
70
1. Select the toggle switch to use workspace managed identity.
@@ -81,7 +81,7 @@ For detailed information on how to use the Import Data component, see the [Impor
81
81
82
82
## Supported sources
83
83
84
-
This section lists the data sources supported by the designer. Data comes into the designer from either a datastore or from [tabular dataset](how-to-create-register-datasets.md#dataset-types).
84
+
This section lists the data sources supported by the designer. Data comes into the designer from either a datastore or from a [tabular dataset](how-to-create-register-datasets.md#dataset-types).
In this article, you learn how to add logging code to designer pipelines. You also learn how to view those logs using the Azure Machine Learning studio web portal.
20
+
In this article, you learn how to add code to designer pipelines to enable log metrics. You also learn how to view those logs using the Azure Machine Learning studio web portal.
21
21
22
22
For more information on logging metrics using the SDK authoring experience, see [Log & view metrics and log files](../how-to-log-view-metrics.md).
0 commit comments