Azure Machine Learning ワークスペースで自動機械学習実験を実行します。実行に関する情報を以下の表に示します。

Azure Machine Learning SDK を使用して、実験実行の最適な反復を取得するスクリプトを作成する必要があります。どの Python コード セグメントを使用する必要がありますか?
正解:A
Explanation
The get_output method on automl_classifier returns the best run and the fitted model for the last invocation.
Overloads on get_output allow you to retrieve the best run and fitted model for any logged metric or for a particular iteration.
In [ ]:
best_run, fitted_model = local_run.get_output()
Reference:
https://notebooks.azure.com/azureml/projects/azureml-getting-started/html/how-to-use-azureml/automated-mach