Skip to content

Commit 69c8922

Browse files
committed
date changee and link text
1 parent c0f7f0a commit 69c8922

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.topic: how-to
99
author: cloga
1010
ms.author: lochen
1111
ms.reviewer: lagayhar
12-
ms.date: 03/13/2023
12+
ms.date: 04/06/2023
1313
ms.custom: sdkv2, cliv2,
1414
---
1515

articles/machine-learning/reference-yaml-component-pipeline.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.topic: reference
99
ms.custom: cliv2
1010
author: cloga
1111
ms.author: lochen
12-
ms.date: 02/28/2023
12+
ms.date: 04/06/2023
1313
ms.reviewer: lagayhar
1414
---
1515

@@ -22,6 +22,7 @@ The source JSON schema can be found at https://azuremlschemas.azureedge.net/late
2222
[!INCLUDE [schema note](../../includes/machine-learning-preview-old-json-schema-note.md)]
2323

2424
[!INCLUDE [machine-learning-preview-generic-disclaimer](../../includes/machine-learning-preview-generic-disclaimer.md)]
25+
2526
## YAML syntax
2627

2728
| Key | Type | Description | Allowed values | Default value |
@@ -35,9 +36,9 @@ The source JSON schema can be found at https://azuremlschemas.azureedge.net/late
3536
| `tags` | object | Dictionary of tags for the component. | | |
3637
| `jobs` | object | **Required.** Dictionary of the set of individual jobs to run as steps within the pipeline. These jobs are considered child jobs of the parent pipeline job. <br><br> The key is the name of the step within the context of the pipeline job. This name is different from the unique job name of the child job. The value is the job specification, which can follow the [command job schema](reference-yaml-job-command.md#yaml-syntax) or [sweep job schema](reference-yaml-job-sweep.md#yaml-syntax). Currently only command jobs and sweep jobs can be run in a pipeline. | | |
3738
| `inputs` | object | Dictionary of inputs to the pipeline job. The key is a name for the input within the context of the job and the value is the input value. <br><br> These pipeline inputs can be referenced by the inputs of an individual step job in the pipeline using the `${{ parent.inputs.<input_name> }}` expression. For more information on how to bind the inputs of a pipeline step to the inputs of the top-level pipeline job, see the [Expression syntax for binding inputs and outputs between steps in a pipeline job](reference-yaml-core-syntax.md#binding-inputs-and-outputs-between-steps-in-a-pipeline-job). | | |
38-
| `inputs.<input_name>` | number, integer, boolean, string or object | One of a literal value (of type number, integer, boolean, or string) or an object containing a [job input data specification](#job-inputs). | | |
39+
| `inputs.<input_name>` | number, integer, boolean, string or object | One of a literal value (of type number, integer, boolean, or string) or an object containing a [component input data specification](#component-inputs). | | |
3940
| `outputs` | object | Dictionary of output configurations of the pipeline job. The key is a name for the output within the context of the job and the value is the output configuration. <br><br> These pipeline outputs can be referenced by the outputs of an individual step job in the pipeline using the `${{ parents.outputs.<output_name> }}` expression. For more information on how to bind the inputs of a pipeline step to the inputs of the top-level pipeline job, see the [Expression syntax for binding inputs and outputs between steps in a pipeline job](reference-yaml-core-syntax.md#binding-inputs-and-outputs-between-steps-in-a-pipeline-job). | |
40-
| `outputs.<output_name>` | object | You can leave the object empty, in which case by default the output will be of type `uri_folder` and Azure Machine Learning will system-generate an output location for the output based on the following template path: `{settings.datastore}/azureml/{job-name}/{output-name}/`. File(s) to the output directory will be written via read-write mount. If you want to specify a different mode for the output, provide an object containing the [job output specification](#job-outputs). | |
41+
| `outputs.<output_name>` | object | You can leave the object empty, in which case by default the output will be of type `uri_folder` and Azure Machine Learning will system-generate an output location for the output based on the following template path: `{settings.datastore}/azureml/{job-name}/{output-name}/`. File(s) to the output directory will be written via read-write mount. If you want to specify a different mode for the output, provide an object containing the [component output specification](#component-outputs). | |
4142

4243
### Component input
4344

0 commit comments

Comments
 (0)