Unanswered
Hi All! I Have A Question About Pipelines. My Pipeline Consists Of Several Steps:
GrotesqueDog77 one issue with this design, in order to run a sub-component, the call must be done from the parent component, does that make sense?
` def step_one(data):
return data
def step_two(path):
return model
def both_steps()
path = step_one("stuff")
return step_two(path)
def pipeline():
both_steps() Which would make
both_steps ` a component and step_one and step_two sub-components
wdyt?
160 Views
0
Answers
2 years ago
one year ago