Skip to content

Commit 09a862d

Browse files
authored
Update concept-designer.md
Change datasets->data
1 parent 98584fe commit 09a862d

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

articles/machine-learning/concept-designer.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.subservice: core
88
ms.topic: conceptual
99
ms.author: lagayhar
1010
author: lgayhardt
11-
ms.date: 10/21/2021
11+
ms.date: 08/03/2022
1212
ms.custom: designer, FY21Q4-aml-seo-hack, contperf-fy21q4, event-tier1-build-2022
1313
---
1414

@@ -24,7 +24,7 @@ Azure Machine Learning designer is a drag-and-drop interface used to train and d
2424
The designer uses your Azure Machine Learning [workspace](concept-workspace.md) to organize shared resources such as:
2525

2626
+ [Pipelines](#pipeline)
27-
+ [Datasets](#datasets)
27+
+ [Data](#data)
2828
+ [Compute resources](#compute)
2929
+ [Registered models](v1/concept-azure-machine-learning-architecture.md#models)
3030
+ [Published pipelines](#publish)
@@ -34,29 +34,29 @@ The designer uses your Azure Machine Learning [workspace](concept-workspace.md)
3434

3535
Use a visual canvas to build an end-to-end machine learning workflow. Train, test, and deploy models all in the designer:
3636

37-
+ Drag-and-drop [datasets](#datasets) and [components](#component) onto the canvas.
37+
+ Drag-and-drop [data assets](#data) and [components](#component) onto the canvas.
3838
+ Connect the components to create a [pipeline draft](#pipeline-draft).
3939
+ Submit a [pipeline run](#pipeline-job) using the compute resources in your Azure Machine Learning workspace.
4040
+ Convert your **training pipelines** to **inference pipelines**.
41-
+ [Publish](#publish) your pipelines to a REST **pipeline endpoint** to submit a new pipeline that runs with different parameters and datasets.
42-
+ Publish a **training pipeline** to reuse a single pipeline to train multiple models while changing parameters and datasets.
41+
+ [Publish](#publish) your pipelines to a REST **pipeline endpoint** to submit a new pipeline that runs with different parameters and data assets.
42+
+ Publish a **training pipeline** to reuse a single pipeline to train multiple models while changing parameters and data assets.
4343
+ Publish a **batch inference pipeline** to make predictions on new data by using a previously trained model.
4444
+ [Deploy](#deploy) a **real-time inference pipeline** to an online endpoint to make predictions on new data in real time.
4545

4646
![Workflow diagram for training, batch inference, and real-time inference in the designer](./media/concept-designer/designer-workflow-diagram.png)
4747

4848
## Pipeline
4949

50-
A [pipeline](v1/concept-azure-machine-learning-architecture.md#ml-pipelines) consists of datasets and analytical components, which you connect. Pipelines have many uses: you can make a pipeline that trains a single model, or one that trains multiple models. You can create a pipeline that makes predictions in real time or in batch, or make a pipeline that only cleans data. Pipelines let you reuse your work and organize your projects.
50+
A [pipeline](v1/concept-azure-machine-learning-architecture.md#ml-pipelines) consists of data assets and analytical components, which you connect. Pipelines have many uses: you can make a pipeline that trains a single model, or one that trains multiple models. You can create a pipeline that makes predictions in real time or in batch, or make a pipeline that only cleans data. Pipelines let you reuse your work and organize your projects.
5151

5252
### Pipeline draft
5353

5454
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, creating parameters, and so on.
5555

5656
A valid pipeline has these characteristics:
5757

58-
* Datasets can only connect to components.
59-
* components can only connect to either datasets or other components.
58+
* Data assets can only connect to components.
59+
* components can only connect to either data assets or other components.
6060
* All input ports for components must have some connection to the data flow.
6161
* All required parameters for each component must be set.
6262

@@ -68,9 +68,9 @@ Each time you run a pipeline, the configuration of the pipeline and its results
6868

6969
Pipeline jobs are grouped into [experiments](v1/concept-azure-machine-learning-architecture.md#experiments) to organize job history. You can set the experiment for every pipeline job.
7070

71-
## Datasets
71+
## Data
7272

73-
A machine learning dataset makes it easy to access and work with your data. Several [sample datasets](samples-designer.md#datasets) are included in the designer for you to experiment with. You can [register](how-to-create-register-datasets.md) more datasets as you need them.
73+
A machine learning data asset makes it easy to access and work with your data. Several [sample data assets](samples-designer.md#datasets) are included in the designer for you to experiment with. You can [register](how-to-create-register-datasets.md) more data assets as you need them.
7474

7575
## Component
7676

0 commit comments

Comments
 (0)