Skip to content

Commit b139a69

Browse files
committed
few changes
1 parent feaed9b commit b139a69

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

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

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,35 @@
11
---
2-
title: How to nest pipeline components
2+
title: How to use pipeline components in pipeline jobs
33
titleSuffix: Azure Machine Learning
4-
description: Learn how to nest pipeline components to build Azure Machine Learning pipeline jobs by using CLI v2, Python SDK v2, or the studio UI.
4+
description: Learn how to nest multistep pipeline components in Azure Machine Learning pipeline jobs by using CLI v2, Python SDK v2, or the studio UI.
55
services: machine-learning
66
ms.service: azure-machine-learning
77
ms.subservice: mlops
88
ms.topic: how-to
99
author: lgayhardt
1010
ms.author: lagayhar
1111
ms.reviewer: lochen
12-
ms.date: 09/10/2024
12+
ms.date: 09/13/2024
1313
ms.custom:
1414
- sdkv2
1515
- cliv2
1616
- devx-track-python
1717
- ignite-2023
1818
---
1919

20-
# How to nest pipeline components to build pipeline jobs
20+
# Use multistep pipeline components in pipeline jobs
2121

2222
[!INCLUDE [dev v2](includes/machine-learning-dev-v2.md)]
2323

24-
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.
2525

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.
2727

2828
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.
2929

3030
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:
3131

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.
3333
- 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.
3434
- Pipeline level settings such as `default_datastore` and `default_compute` are also runtime settings that aren't part of pipeline component definitions.
3535

@@ -54,7 +54,7 @@ Both pipeline components and pipeline jobs contain groups of steps or components
5454

5555
---
5656

57-
## Build pipeline jobs with nested components
57+
## Build pipeline jobs with pipeline components
5858

5959
You can define multiple steps as a pipeline component, and then use the multistep component like any other component to build a pipeline job.
6060

0 commit comments

Comments
 (0)