
Explanation:
The correct answer is D. mlflow.compare_runs(). Here's why:
This function is the most efficient way for the data scientist to compare models and select the optimal one based on performance metrics. Additionally, qualitative factors like model interpretability and resource efficiency should also be considered in the final decision-making process.
Ultimate access to all questions.
A data scientist is utilizing MLflow within Databricks to track and manage machine learning experiments. Their goal is to compare several models to determine which one performs the best. Which MLflow function or feature is specifically designed for model comparison?
A
mlflow.start_run()
B
mlflow.log_param()
C
mlflow.log_metric()
D
mlflow.compare_runs()
No comments yet.