tessl install tessl/pypi-kedro@1.1.0Kedro helps you build production-ready data and analytics pipelines
Agent Success
Agent success rate when using this tile
98%
Improvement
Agent success rate improvement when using this tile compared to baseline
1.32x
Baseline
Agent success rate without this tile
74%
A utility that enables selective execution of portions of a data pipeline based on specific input and output datasets.
@generates
def extract_pipeline_from_inputs(pipeline, input_names):
"""
Extract a subset of the pipeline starting from specified input datasets.
Args:
pipeline: A Kedro Pipeline object
input_names: A list of dataset names to start from
Returns:
A new Pipeline containing nodes that depend on the specified inputs
and all their downstream dependencies
"""
pass
def extract_pipeline_to_outputs(pipeline, output_names):
"""
Extract a subset of the pipeline required to produce specified outputs.
Args:
pipeline: A Kedro Pipeline object
output_names: A list of dataset names to produce
Returns:
A new Pipeline containing nodes required to produce the specified
outputs and all their upstream dependencies
"""
passProvides pipeline construction and filtering capabilities.
@satisfied-by