
Explanation:
The correct answer is B. mlflow.create_experiment. This feature allows for the creation of named experiments, which can be organized hierarchically by using a naming convention that reflects the desired structure. For instance, an experiment named 'Customer churn prediction' could have sub-experiments like 'Logistic regression', 'Random forest', and 'Neural network'. Other options like mlflow.log_param are for logging parameters within a run, mlflow.set_experiment sets the active experiment without creating new ones, and mlflow.start_run initiates a new run within an experiment but does not organize experiments hierarchically.
Ultimate access to all questions.
To efficiently organize a large number of experiments in MLflow into a hierarchical structure, which MLflow feature should a machine learning engineer use?
A
mlflow.log_param
B
mlflow.create_experiment
C
mlflow.set_experiment
D
mlflow.start_run
No comments yet.