dmb23
04/29/2022, 11:49 AMtrain_node = node(train_model, inputs='input_data', outputs='trained_model')
plot_node = node(plot_model_evaluation, inputs='trained_model', outputs='validation_plot')
training_pipeline = pipeline(
[train_node, plot_node],
inputs='input_data',
outputs=['trained_model', 'validation_plot'],
namespace='training'
)
will show the trained_model unconnected to the training pipeline when it is folded, but correctly placed between the nodes when the pipeline is unfolded (in both cases it is correctly connected to any downstream nodes/pipelines).