Fetch metadata within steps
Accessing meta information in real-time within your pipeline.
Using the StepContext
StepContext
To find information about the pipeline or step that is currently running, you can use the zenml.get_step_context()
function to access the StepContext
of your step:
Furthermore, you can also use the StepContext
to find out where the outputs of your current step will be stored and which Materializer class will be used to save them:
See the SDK Docs for more information on which attributes and methods the StepContext
provides.
Last updated