
Ultimate access to all questions.
You are developing a machine learning project on a local machine using the Azure Machine Learning SDK for Python and Git for version control. After submitting a training run that returns a Run object, you need to retrieve the active Git branch for that run.
Which two code segments should you use? Each correct answer presents part of the solution. NOTE: Each correct selection is worth one point.
A
details = run.get_environment()_
B
details.properties['azureml.git.branch']
C
details.properties['azureml.git.commit']
D
details = run.get_details()_