Skip to content

Commit 76a7b95

Browse files
committed
Freshness - v1 designer
1 parent 472a8e6 commit 76a7b95

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

articles/machine-learning/v1/concept-designer.md

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -9,22 +9,22 @@ ms.topic: concept-article
99
ms.author: lagayhar
1010
ms.reviewer: lagayhar
1111
author: lgayhardt
12-
ms.date: 05/22/2024
12+
ms.date: 09/09/2025
1313
ms.custom: UpdateFrequency5, designer, training
1414
---
1515

1616
# What is Designer (v1) in Azure Machine Learning?
1717

1818
[!INCLUDE [v1 deprecation](../includes/sdk-v1-deprecation.md)]
1919

20-
The Azure Machine Learning designer is a drag-and-drop interface used to train and deploy models in Azure Machine Learning studio. This article describes the tasks you can do in the designer.
20+
Azure Machine Learning designer is a drag-and-drop interface for training and deploying models in Azure Machine Learning studio. This article describes the tasks you can perform in the designer.
2121

2222
> [!IMPORTANT]
2323
> Designer in Azure Machine Learning supports two types of pipelines that use classic prebuilt (v1) or custom (v2) components. The two component types aren't compatible within pipelines, and designer v1 isn't compatible with CLI v2 and SDK v2. **This article applies to pipelines that use classic prebuilt (v1) components.**
2424
>
25-
> - **Classic prebuilt components (v1)** include typical data processing and machine learning tasks like regression and classification. Azure Machine Learning continues to support the existing classic prebuilt components, but no new prebuilt components are being added. Also, deployment of classic prebuilt (v1) components doesn't support managed online endpoints (v2).
25+
> - **Classic prebuilt components (v1)** include typical data processing and machine learning tasks like regression and classification. Azure Machine Learning continues to support existing classic prebuilt components, but we're not adding new prebuilt components. Deployment of classic prebuilt (v1) components doesn't support managed online endpoints (v2).
2626
>
27-
> - **Custom components (v2)** let you wrap your own code as components, enabling sharing across workspaces and seamless authoring across Azure Machine Learning studio, CLI v2, and SDK v2 interfaces. It's best to use custom components for new projects, because they're compatible with Azure Machine Learning v2 and continue to receive new updates. For more information about custom components and Designer (v2), see [Azure Machine Learning designer (v2)](../concept-designer.md?view=azureml-api-2&preserve-view=true).
27+
> - **Custom components (v2)** let you wrap your own code as components. This enables sharing across workspaces and seamless authoring across Azure Machine Learning studio, CLI v2, and SDK v2 interfaces. Use custom components for new projects because they're compatible with Azure Machine Learning v2 and continue to receive updates. For more information about custom components and Designer (v2), see [Azure Machine Learning designer (v2)](../concept-designer.md?view=azureml-api-2&preserve-view=true).
2828
2929
The following animated GIF shows how you can build a pipeline visually in Designer by dragging and dropping assets and connecting them.
3030

@@ -43,7 +43,7 @@ The designer uses your Azure Machine Learning [workspace](../concept-workspace.m
4343
- [Published pipeline jobs](#publish)
4444
- [Real-time endpoints](#deploy)
4545

46-
The following diagram illustrates how you can use the designer to build an end-to-end machine learning workflow. You can train, test, and deploy models, all in the designer interface.
46+
The following diagram shows how you can use the designer to build an end-to-end machine learning workflow. You can train, test, and deploy models in the designer interface.
4747

4848
:::image type="content" source="../media/concept-designer/designer-workflow-diagram.png" alt-text="Workflow diagram for training, batch inference, and real-time inference in the designer." border="false":::
4949

@@ -52,22 +52,22 @@ The following diagram illustrates how you can use the designer to build an end-t
5252
- Convert your **training pipelines** to **inference pipelines**.
5353
- [Publish](#publish) your pipelines to a REST **pipeline endpoint** to submit new pipelines that run with different parameters and data assets.
5454
- Publish a **training pipeline** to reuse a single pipeline to train multiple models while changing parameters and data assets.
55-
- Publish a **batch inference pipeline** to make predictions on new data by using a previously trained model.
55+
- Publish a **batch inference pipeline** to make predictions on new data using a previously trained model.
5656
- [Deploy](#deploy) a **real-time inference pipeline** to an online endpoint to make predictions on new data in real time.
5757

5858
## Data
5959

60-
A machine learning data asset makes it easy to access and work with your data. The designer includes several [sample data assets](samples-designer.md#datasets) for you to experiment with. You can [register](how-to-create-register-datasets.md) more data assets as you need them.
60+
A machine learning data asset makes it easy to access and work with your data. The designer includes several [sample data assets](samples-designer.md#datasets) that you can experiment with. You can [register](how-to-create-register-datasets.md) more data assets as needed.
6161

6262
## Components
6363

6464
A component is an algorithm that you can run on your data. The designer has several components ranging from data ingress functions to training, scoring, and validation processes.
6565

66-
A component can have parameters that you use to configure the component's internal algorithms. When you select a component on the canvas, the component's parameters and other settings display in a properties pane at the right of the canvas. You can modify the parameters and set the compute resources for individual components in that pane.
66+
A component can have parameters that you use to configure the component's internal algorithms. When you select a component on the canvas, the component's parameters and other settings appear in a properties pane on the right side of the canvas. You can modify the parameters and set the compute resources for individual components in that pane.
6767

6868
:::image type="content" source="../media/concept-designer/properties.png" alt-text="Screenshot showing the component properties.":::
6969

70-
For more information about the library of available machine learning algorithms, see the [Algorithm and component reference](../component-reference/component-reference.md). For help with choosing an algorithm, see the [Azure Machine Learning Algorithm Cheat Sheet](algorithm-cheat-sheet.md).
70+
For more information about the library of available machine learning algorithms, see the [Algorithm and component reference](../component-reference/component-reference.md). For help choosing an algorithm, see the [Azure Machine Learning Algorithm Cheat Sheet](algorithm-cheat-sheet.md).
7171

7272
## Pipelines
7373

@@ -82,16 +82,16 @@ Pipelines have many uses. You can create pipelines that:
8282

8383
### Pipeline drafts
8484

85-
As you edit a pipeline in the designer, your progress is saved as a *pipeline draft*. You can edit a pipeline draft at any point by adding or removing components, configuring compute targets, or setting parameters.
85+
As you edit a pipeline in the designer, your progress saves as a *pipeline draft*. You can edit a pipeline draft at any point by adding or removing components, configuring compute targets, or setting parameters.
8686

87-
A valid pipeline has the following characteristics:
87+
A valid pipeline has these characteristics:
8888

8989
- Data assets can connect only to components.
9090
- Components can connect only to data assets or to other components.
9191
- All input ports for components must have some connection to the data flow.
9292
- All required parameters for each component must be set.
9393

94-
When you're ready to run your pipeline draft, you save the pipeline and submit a pipeline job.
94+
When you're ready to run your pipeline draft, save the pipeline and submit a pipeline job.
9595

9696
### Pipeline jobs
9797

@@ -101,7 +101,7 @@ You can go back to any pipeline job to inspect it for troubleshooting or auditin
101101

102102
## <a name="compute"></a> Compute resources
103103

104-
Compute targets are attached to your [Azure Machine Learning workspace](../concept-workspace.md) in [Azure Machine Learning studio](https://ml.azure.com). Use compute resources from your workspace to run your pipeline and host your deployed models as online endpoints or as pipeline endpoints for batch inference. The supported compute targets are as follows:
104+
Compute targets are attached to your [Azure Machine Learning workspace](../concept-workspace.md) in [Azure Machine Learning studio](https://ml.azure.com). Use compute resources from your workspace to run your pipeline and host your deployed models as online endpoints or as pipeline endpoints for batch inference. The supported compute targets are:
105105

106106
| Compute target | Training | Deployment |
107107
| ---- |:----:|:----:|
@@ -110,15 +110,15 @@ Compute targets are attached to your [Azure Machine Learning workspace](../conce
110110

111111
## Deploy
112112

113-
To do real-time inferencing, you must deploy a pipeline as an [online endpoint](../concept-endpoints-online.md). The online endpoint creates an interface between an external application and your scoring model. The endpoint is based on REST, a popular architecture choice for web programming projects. A call to an online endpoint returns prediction results to the application in real time.
113+
To perform real-time inferencing, deploy a pipeline as an [online endpoint](../concept-endpoints-online.md). The online endpoint creates an interface between an external application and your scoring model. The endpoint is based on REST, a popular architecture choice for web programming projects. A call to an online endpoint returns prediction results to the application in real time.
114114

115-
To make a call to an online endpoint, you pass the API key that was created when you deployed the endpoint. Online endpoints must be deployed to an AKS cluster. To learn how to deploy your model, see [Tutorial: Deploy a machine learning model with the designer](tutorial-designer-automobile-price-deploy.md).
115+
To call an online endpoint, pass the API key that was created when you deployed the endpoint. Online endpoints must be deployed to an AKS cluster. To learn how to deploy your model, see [Tutorial: Deploy a machine learning model with the designer](tutorial-designer-automobile-price-deploy.md).
116116

117117
## Publish
118118

119-
You can also publish a pipeline to a *pipeline endpoint*. Similar to an online endpoint, a pipeline endpoint lets you submit new pipeline jobs from external applications by using REST calls. However, you can't send or receive data in real time by using a pipeline endpoint.
119+
You can also publish a pipeline to a *pipeline endpoint*. Similar to an online endpoint, a pipeline endpoint lets you submit new pipeline jobs from external applications using REST calls. However, you can't send or receive data in real time using a pipeline endpoint.
120120

121-
Published pipeline endpoints are flexible and can be used to train or retrain models, [do batch inferencing](how-to-run-batch-predictions-designer.md), or process new data. You can publish multiple pipelines to a single pipeline endpoint and specify which pipeline version to run.
121+
Published pipeline endpoints are flexible and can be used to train or retrain models, [perform batch inferencing](how-to-run-batch-predictions-designer.md), or process new data. You can publish multiple pipelines to a single pipeline endpoint and specify which pipeline version to run.
122122

123123
A published pipeline runs on the compute resources you define in the pipeline draft for each component. The designer creates the same [PublishedPipeline](/python/api/azureml-pipeline-core/azureml.pipeline.core.graph.publishedpipeline) object as the SDK.
124124

0 commit comments

Comments
 (0)