Skip to content

Commit 89d0999

Browse files
authored
Merge pull request #111676 from mastloui-msft/patch-6
[Pipeline Component] - Fix small typos in pipeline component documentation
2 parents 0952c42 + 4c4cca4 commit 89d0999

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/machine-learning/how-to-use-pipeline-component.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ ms.custom: sdkv2, cliv2, devx-track-python
1717

1818
[!INCLUDE [dev v2](../../includes/machine-learning-dev-v2.md)]
1919

20-
When developing a complex machine learning pipeline, it's common to have sub-pipelines that use multi-step to perform tasks such as data preprocessing and model training. These sub-pipelines can be developed and tested standalone. Pipeline component groups multi-step as a component that can be used as a single step to create complex pipelines. Which will help you share your work and better collaborate with team members.
20+
When developing a complex machine learning pipeline, it's common to have sub-pipelines that use multi-step to perform tasks such as data preprocessing and model training. These sub-pipelines can be developed and tested standalone. Pipeline component groups multi-step as a component that can be used as a single step to create complex pipelines. Which will help you share your work and better collaborate with team members.
2121

2222
By using a pipeline component, the author can focus on developing sub-tasks and easily integrate them with the entire pipeline job. Furthermore, a pipeline component has a well-defined interface in terms of inputs and outputs, which means that user of the pipeline component doesn't need to know the implementation details of the component.
2323

@@ -33,9 +33,9 @@ In this article, you'll learn how to use pipeline component in Azure Machine Lea
3333

3434
## The difference between pipeline job and pipeline component
3535

36-
In general, pipeline component is similar to pipeline job. They're both consist of a group of jobs/components.
36+
In general, pipeline components are similar to pipeline jobs because they both contain a group of jobs/components.
3737

38-
Here are some main differences you need aware when defining pipeline component:
38+
Here are some main differences you need to be aware of when defining pipeline components:
3939

4040
- Pipeline component only defines the interface of inputs/outputs, which means when defining a pipeline component you need to explicitly define the type of inputs/outputs instead of directly assigning values to them.
4141
- Pipeline component can't have runtime settings, you can't hard-code compute, or data node in the pipeline component. Instead you need to promote them as pipeline level inputs and assign values during runtime.

0 commit comments

Comments
 (0)