forked from Azure/azureml-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpipeline.yml
More file actions
23 lines (20 loc) · 675 Bytes
/
Copy pathpipeline.yml
File metadata and controls
23 lines (20 loc) · 675 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
$schema: https://azuremlschemas.azureedge.net/latest/pipelineJob.schema.json
type: pipeline
display_name: 2b_component_with_input_output
description: Component with inputs and outputs
outputs:
pipeline_sample_output_data:
mode: upload
jobs:
hello_python_world_job:
type: command
component: ./component.yml
compute: azureml:cpu-cluster
inputs:
sample_input_data:
type: uri_folder
path: ./data
# This input has a default value in the component so can skip it.
# sample_input_string: ${{inputs.pipeline_sample_input_string}}
outputs:
sample_output_data: ${{parent.outputs.pipeline_sample_output_data}}