Pass Data Between Pipeline Nodes
File outputs to inputs
Basic file passing
- step:
name: train-model
image: tensorflow/tensorflow:2.4.1
command: python train.py
- step:
name: test-model
image: tensorflow/tensorflow:2.4.1
command: python test.py
inputs:
- name: model
- pipeline:
name: training-pipeline
nodes:
- name: train-model
step: train-model
type: execution
- name: test-model
step: test-model
type: execution
edges:
- [train-model.output.model.pkl, test-model.input.model]Edge merge modes
Parameter passing
Static parameter passing
Metadata to parameters
Single value metadata
Multi-value metadata for tasks
Common issues and fixes
Best practices
Next steps
Last updated
Was this helpful?
