Learn R Programming

mlflow (version 0.9.0.1)

mlflow_client_get_run: Get Run

Description

Gets metadata, params, tags, and metrics for a run. In the case where multiple metrics with the same key are logged for the run, returns only the value with the latest timestamp. If there are multiple values with the latest timestamp, returns the maximum of these values.

Usage

mlflow_client_get_run(client, run_id)

Arguments

client

An `mlflow_client` object.

run_id

Run ID.

Details

The Tracking Client family of functions require an MLflow client to be specified explicitly. These functions allow for greater control of where the operations take place in terms of services and runs, but are more verbose compared to the Fluent API.