Ultimate access to all questions.
You are using a Python script for an Azure Machine Learning experiment. The script references the experiment run context, loads data, identifies the unique values for the label column, and completes the run. You need to log these unique label values as run metrics for later review.
You add the following code at the indicated point to achieve this:
run.log_list('Label Values', label_vals)
Does this solution meet the goal?