Skip to content
MLA
ML Workflows
medium
Question 7 of 38

A data scientist needs to search all runs in a specific experiment and filter only those with a validation accuracy greater than 0.90, then retrieve the run with the highest accuracy. Which mlflow.search_runs() call correctly achieves this?

Amlflow.search_runs(experiment_names=["/Shared/exp"], filter_string="metrics.val_accuracy > 0.90", order_by=["metrics.val_accuracy DESC"])
Bmlflow.search_runs(experiment_names=["/Shared/exp"], metrics={"val_accuracy": {"$gt": 0.90}})
Cmlflow.get_runs("/Shared/exp", filter={"val_accuracy__gt": 0.90})
Dmlflow.list_runs("/Shared/exp")

Educational Content — CertQnA practice questions are written against official exam objectives, covering the same domains tested on the real exam. All content is original and independent — not actual exam questions, not affiliated with any certification vendor. Learn more about our content policy

Discussion

Be the first to share your understanding of this concept

⚠️ Discussion is for concept clarification only. Do not share or request actual exam questions or answers.

Sign in to join the discussion