Posted by: Pdfprep
Post Date: March 11, 2021
You use the following code to run a script as an experiment in Azure Machine Learning:
You must identify the output files that are generated by the experiment run.
You need to add code to retrieve the output file names.
Which code segment should you add to the script?
A . files = run.get_properties()
B . files= run.get_file_names()
C . files = run.get_details_with_logs()
D . files = run.get_metrics()
E . files = run.get_details()
Answer: B
Explanation:
You can list all of the files that are associated with this run record by called run.get_file_names()
Reference: https://docs.microsoft.com/en-us/azure/machine-learning/how-to-track-experiments
Leave a Reply