You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
from kedro.pipeline import Pipeline, node, pipeline
|
|
|
|
from .nodes import test_dataset
|
|
|
|
|
|
def create_pipeline(**kwargs) -> Pipeline:
|
|
return pipeline(
|
|
[
|
|
node(
|
|
func=test_dataset,
|
|
inputs="dataset_test",
|
|
outputs="preprocessed_dataset_test",
|
|
name="process_test_dataset_node",
|
|
),
|
|
]
|
|
)
|