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
25 lines (21 loc) · 687 Bytes
/
Copy pathpipeline.yml
File metadata and controls
25 lines (21 loc) · 687 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
$schema: https://azuremlschemas.azureedge.net/latest/pipelineJob.schema.json
type: pipeline
display_name: 4a_local_data_input
description: Example of using data in a local folder as pipeline input
inputs:
pipeline_sample_input_string: 'Hello_Pipeline_World'
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
sample_input_string: ${{parent.inputs.pipeline_sample_input_string}}
outputs:
sample_output_data: ${{parent.outputs.pipeline_sample_output_data}}