Neuraxle icon indicating copy to clipboard operation
Neuraxle copied to clipboard

Feature: BaseStep.chain_with(other: BaseStep) -> Pipeline

Open guillaume-chevalier opened this issue 4 years ago • 2 comments

Here is a unit test for what I have in mind:

a = SomeStep()
b = SomeOtherStep()
c = SomeOtherNewStep()

p = a.chain_with(b)
assert p.keys() == ­["SomeStep", "SomeOtherStep"]

p2 = p.chain_with(c)
assert p2.keys() == ­["SomeStep", "SomeOtherStep", "SomeOtherNewStep"]

guillaume-chevalier avatar Feb 27 '20 01:02 guillaume-chevalier

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs in the next 180 days. Thank you for your contributions.

stale[bot] avatar Aug 30 '21 01:08 stale[bot]

This could be a __add__ (+) operator on the steps as well.

guillaume-chevalier avatar Oct 21 '21 13:10 guillaume-chevalier

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs in the next 180 days. Thank you for your contributions.

stale[bot] avatar Apr 24 '23 18:04 stale[bot]