FEAT added new node to pipeline

This commit is contained in:
WaylonWalker 2020-03-01 09:18:10 -06:00
parent aab8c3c1e8
commit 68784a7f5a

View file

@ -51,5 +51,6 @@ def create_pipeline(**kwargs):
"example_predictions",
),
node(report_accuracy, ["example_predictions", "example_test_y"], None),
node(lambda x: x, 'example_test_y', None, name='Test Add Node'),
]
)