Compose pipelines
Reuse steps between pipelines.
Sometimes it can be useful to extract some common functionality into separate functions in order to avoid code duplication. To facilitate this, ZenML allows you to compose your pipelines:
Here we are calling one pipeline from within another pipeline, so functionally the data_loading_pipeline
is functioning as a step within the training_pipeline
, i.e. the steps of the former are added to the latter. Only the parent pipeline will be visible in the dashboard. In order to actually trigger a pipeline from another, see here
Last updated