Which of the following changes does the data scientist need to make to the above code block so that it successfully nests the child runs under the parent run in MLflow?

A data scientist is using MLflow to track their machine learning experiment. As a part of each MLflow run, they are performing hyperparameter tuning. The data scientist would like to have one parent run for the tuning process with a child run for each unique combination of hyperparameter values.

They are using the following code block:

The code block is not nesting the runs in MLflow as they expected.

Which of the following changes does the data scientist need to make to the above code block so that it successfully nests the child runs under the parent run in MLflow?
A . Indent the child run blocks within the parent run block
B . Add the nested=True argument to the parent run
C . Remove the nested=True argument from the child runs
D . Provide the same name to the run name parameter for all three run blocks
E . Add the nested=True argument to the parent run and remove the nested=True arguments from the child runs

Answer: E

Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments