
Answer-first summary for fast verification
Answer: mlflow.create_experiment
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.
Author: LeetQuiz Editorial Team
Ultimate access to all questions.
No comments yet.