I'm using Python SDK, and my goal is to download output files from a pipeline step run. However, I have only been able to access the (global) pipeline logs, but not the logs of the individual steps. Here is my code at the moment:
train_exp = ws.experiments.get('scheduled-train-pipeline')
# Get last run
run = [i for i in train_exp.get_runs()]
run[0].get_file_names()
I need to access the child step of the pipeline run, and then download the logs of this step