<How to call the data object from another namespac...
# questions-so
r
How to call the data object from another namespace in already namespaced kedro pipeline? I have the following namespaced pipelines in kedro: def create_pipeline(**kwargs) -> Pipeline: pipeline_instance = pipeline( [ node( func=split_data, inputs=["model_input_table", "params:model_options"], outputs=["X_train", "X_test", "y_train", "y_test"], name="split_data_node", ), node( func=train_model, inputs=["X_train", "y_train"],...
K 1
j
@Nok Lam Chan also struggling with this one