Skip to content
MLA
ML Workflows
medium
Question 10 of 38

A data scientist needs to programmatically retrieve a completed MLflow run's metric value using the run ID. Which code correctly does this?

Arun = mlflow.get_run(run_id); val = run.data.metrics["val_loss"]
Brun = mlflow.load_run(run_id); val = run["metrics"]["val_loss"]
Cval = mlflow.get_metric(run_id, "val_loss")
Druns = mlflow.search_runs(); val = runs[run_id]["val_loss"]

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