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
@@ -34,29 +34,29 @@ The designer uses your Azure Machine Learning [workspace](concept-workspace.md)
34
34
35
35
Use a visual canvas to build an end-to-end machine learning workflow. Train, test, and deploy models all in the designer:
36
36
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.
38
38
+ Connect the components to create a [pipeline draft](#pipeline-draft).
39
39
+ Submit a [pipeline run](#pipeline-job) using the compute resources in your Azure Machine Learning workspace.
40
40
+ 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.
43
43
+ Publish a **batch inference pipeline** to make predictions on new data by using a previously trained model.
44
44
+[Deploy](#deploy) a **real-time inference pipeline** to an online endpoint to make predictions on new data in real time.
45
45
46
46

47
47
48
48
## Pipeline
49
49
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.
51
51
52
52
### Pipeline draft
53
53
54
54
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.
55
55
56
56
A valid pipeline has these characteristics:
57
57
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.
60
60
* All input ports for components must have some connection to the data flow.
61
61
* All required parameters for each component must be set.
62
62
@@ -68,9 +68,9 @@ Each time you run a pipeline, the configuration of the pipeline and its results
68
68
69
69
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.
70
70
71
-
## Datasets
71
+
## Data
72
72
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.
0 commit comments