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
It's common to use pipeline components to develop complex machine learning pipelines. You can also group multiple steps into a component that you can use as a single step to do tasks like data preprocessing or model training.
24
+
It's common to use pipeline components to develop complex machine learning pipelines. You can group multiple steps into a pipeline component that you use as a single step to do tasks like data preprocessing or model training.
25
25
26
-
This article shows you how to nest multiple steps in components to build complex Azure Machine Learning pipeline jobs. You can develop and test these multistep components standalone, which helps you share your work and collaborate better with team members.
26
+
This article shows you how to nest multiple steps in components that you use to build complex Azure Machine Learning pipeline jobs. You can develop and test these multistep components standalone, which helps you share your work and collaborate better with team members.
27
27
28
28
By using multistep pipeline components, you can focus on developing subtasks and easily integrate them with the entire pipeline job. A pipeline component has a well-defined input and output interface, so multistep pipeline component users don't need to know the implementation details of the component.
29
29
30
30
Both pipeline components and pipeline jobs contain groups of steps or components, but defining a pipeline component differs from defining a pipeline job in the following ways:
31
31
32
-
- Pipeline components define only the input and output interfaces. In a pipeline component, you explicitly set the input and output types, but don't directly assign values to them.
32
+
- Pipeline components define only the interfaces of inputs and outputs. In a pipeline component, you explicitly set the input and output types, but you don't directly assign values to them.
33
33
- Pipeline components don't have runtime settings, so you can't hardcode a compute or data node in a pipeline component. Instead you must promote these nodes as pipeline level inputs and assign values during runtime.
34
34
- Pipeline level settings such as `default_datastore` and `default_compute` are also runtime settings that aren't part of pipeline component definitions.
35
35
@@ -54,7 +54,7 @@ Both pipeline components and pipeline jobs contain groups of steps or components
54
54
55
55
---
56
56
57
-
## Build pipeline jobs with nested components
57
+
## Build pipeline jobs with pipeline components
58
58
59
59
You can define multiple steps as a pipeline component, and then use the multistep component like any other component to build a pipeline job.
0 commit comments