Pipeline Object #721
LordDarkula
started this conversation in
Show and tell
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
A Pipeline object has been created with #710. Previously a pipeline could be generated with the
to_pipeline
method from a series of artifacts and dependencies. The issue with this approach is that since the output of this function is a set of python files, there was no way to regenerate the pipeline without callingto_pipeline
again with the exact same set of arguments. Now we introduce an intermediatePipeline
object that stores the artifact and dependency relationships and uses anexport
method to generate the files for pipeline orchestration. Just like artifacts, pipelines can be saved withsave
and fetched in any session withget_pipeline
.Beta Was this translation helpful? Give feedback.
All reactions