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
Copy file name to clipboardExpand all lines: articles/machine-learning/service/concept-designer.md
+8-10Lines changed: 8 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,20 +28,18 @@ The designer uses your Azure Machine Learning [workspace](concept-workspace.md)
28
28
+[Published pipelines](#publish)
29
29
+[Real-time endpoints](#deploy)
30
30
31
-

32
-
33
31
## Model training and deployment
34
32
35
33
The designer gives you a visual canvas to build, test, and deploy machine learning models. With the designer you can:
36
34
37
35
+ Drag-and-drop [datasets](#datasets) and [modules](#module) onto the canvas.
38
36
+ Connect the modules together to create a [pipeline draft](#pipeline-draft).
39
37
+ Submit a [pipeline run](#pipeline-run) using the compute resources in your Azure Machine Learning workspace.
40
-
+ Convert your **training pipeline** to an **inference pipeline**.
41
-
+[Publish](#publish) your pipeline to a REST **pipeline endpoint** to submit new pipeline runs with different parameters and datasets.
42
-
+ Publish a **training pipeline** to reuse a single pipeline and train multiple models changing parameters and datasets.
38
+
+ Convert your **training pipelines** to **inference pipelines**.
39
+
+[Publish](#publish) your pipelines to a REST **pipeline endpoint** to submit new pipeline runs with different parameters and datasets.
40
+
+ Publish a **training pipeline** to reuse a single pipeline to train multiple models while changing parameters and datasets.
43
41
+ Publish a **batch inference pipeline** to make predictions on new data by using a previously trained model.
44
-
+[Deploy](#deployment) a **real-time inference pipeline** to make predictions on new data in real time as a real-time endpoint.
42
+
+[Deploy](#deploy) a **real-time inference pipeline** to a real-time endpoint to make predictions on new data in real time.
45
43
46
44

47
45
@@ -64,9 +62,9 @@ When you're ready to run your pipeline draft, you submit a pipeline run.
64
62
65
63
### Pipeline run
66
64
67
-
Each time you run a pipeline, the configuration of the pipeline and its results are stored in your workspace as a **pipeline run**. You can go back to any pipeline run to inspect it for troubleshooting or auditing purposes. **Clone** a pipeline run to create a new pipeline draft for you to edit.
68
-
69
-
Pipeline runs are grouped into [experiments](concept-azure-machine-learning-architecture.md#experiments) to organize run history. You set the experiment for every pipeline run.
65
+
Each time you run a pipeline, the configuration of the pipeline and its results are stored in your workspace as a **pipeline run**. You can go back to any pipeline run to inspect it for troubleshooting or auditing purposes. **Clone** a pipeline run to create a new pipeline draft for you to edit.
66
+
67
+
Pipeline runs are grouped into [experiments](concept-azure-machine-learning-architecture.md#experiments) to organize run history. You can set the experiment for every pipeline run.
70
68
71
69
## Datasets
72
70
@@ -103,7 +101,7 @@ To learn how to deploy your model, see [Tutorial: Deploy a machine learning mode
103
101
104
102
## Publish
105
103
106
-
You can also publish a pipeline to a **pipeline endpoint**. Similar to a real-time endpoint, a pipeline endpoint lets you submit new pipeline runs from external applications using REST calls. However, you cannot send or receive data in real-time.
104
+
You can also publish a pipeline to a **pipeline endpoint**. Similar to a real-time endpoint, a pipeline endpoint lets you submit new pipeline runs from external applications using REST calls. However, you cannot send or receive data in real-time using a pipeline endpoint.
107
105
108
106
Published pipelines are flexible, they can be used to train or retrain models, perform batch inferencing, process new data, and much more. You can publish multiple pipelines to a single pipeline endpoint and specify which pipeline version to run.
0 commit comments