Designing and Implementing a Data Science Solution on Azure — Question 52

You create a Python script that runs a training experiment in Azure Machine Learning. The script uses the Azure Machine Learning SDK for Python.
You must add a statement that retrieves the names of the logs and outputs generated by the script.
You need to reference a Python class object from the SDK for the statement.
Which class object should you use?

Answer options

Correct answer: A

Explanation

The correct answer is A (Run) because the Run class is specifically designed to handle the execution of experiments and provides access to logs and outputs. The other options, such as ScriptRunConfig, Workspace, and Experiment, do not directly retrieve logs and outputs generated during the execution of the training script.