Ultimate access to all questions.
You run a script as an experiment in Azure Machine Learning and have a Run object named run
that references the experiment run. You need to download the log files generated during the run to a local folder for review.
Which two code segments achieve this goal? Each correct answer presents a complete solution.
NOTE: Each correct selection is worth one point.
Option 1:
run.download_files(prefix='outputs', output_directory='./downloads')
Option 2:
run.get_all_logs(destination='./logs')