mlflow (version 1.9.0)

mlflow_end_run: End a Run

Description

Terminates a run. Attempts to end the current active run if `run_id` is not specified.

Usage

mlflow_end_run(
  status = c("FINISHED", "FAILED", "KILLED"),
  end_time = NULL,
  run_id = NULL,
  client = NULL
)

Arguments

status

Updated status of the run. Defaults to `FINISHED`. Can also be set to "FAILED" or "KILLED".

end_time

Unix timestamp of when the run ended in milliseconds.

run_id

Run ID.

client

(Optional) An MLflow client object returned from mlflow_client. If specified, MLflow will use the tracking server associated with the passed-in client. If unspecified (the common case), MLflow will use the tracking server associated with the current tracking URI.