forked from Azure/azureml-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pipeline.yml
36 lines (34 loc) · 1.17 KB
/
pipeline.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
$schema: https://azuremlschemas.azureedge.net/latest/pipelineJob.schema.json
type: pipeline
display_name: 4d_data_input
description: Example of using data from a data as pipeline input
inputs:
pipeline_hello_input_string: 'Pipeline_Hello'
pipeline_world_input_string: 'Pipeline_World'
jobs:
python_hello_step:
type: command
component: ./component-hello.yml
compute: azureml:cpu-cluster
inputs:
sample_input_data:
type: uri_folder
# please follow the instrucion in README.md to create this data asset first,
path: azureml:local-folder-example@latest
mode: ro_mount
sample_input_string: ${{parent.inputs.pipeline_hello_input_string}}
outputs:
sample_output_data:
python_world_step:
type: command
component: ./component-world.yml
compute: azureml:cpu-cluster
inputs:
sample_input_data:
type: uri_folder
# please follow the instrucion in README.md to create this data asset first,
path: azureml:local-folder-example@latest
mode: ro_mount
sample_input_string: ${{parent.inputs.pipeline_world_input_string}}
outputs:
sample_output_data: