
Ultimate access to all questions.
A data scientist is using MLflow to track a machine learning experiment, including hyperparameter tuning. They aim to organize the experiment with one parent run for the tuning process and child runs for each unique hyperparameter combination, all initiated manually with mlflow.start_run(). What is the best method to achieve this organization?_
A
Enable Databricks Autologging to automatically organize the runs.
B
Start each child run within the indented code block of the parent run using mlflow.start_run() without any additional parameters._
C
Specify nested=True when initiating the child run for each unique combination of hyperparameter values.
D
Use the same experiment ID for both parent and child runs to group them together.
E
Specify nested=True when initiating the parent run for the tuning process.