During a single MLflow run, which API pattern correctly logs multiple hyperparameters and metrics?
Select an answer to reveal the explanation.
Short Explanation and Infographic
log_params/log_metrics on the active run — that's your experiment notebook API.
Full explanation below image
Full Explanation
MLflow Tracking uses log_param(s)/log_metric(s) on the active run. log_model stores models; it is not a full replacement for explicit param/metric logging. Direct SQL and UC GRANT are unrelated.