Terminates a run. Attempts to end the current active run if `run_id` is not specified.
mlflow_end_run(status = c("FINISHED", "FAILED", "KILLED"),
end_time = NULL, run_id = NULL, client = NULL)
Updated status of the run. Defaults to `FINISHED`. Can also be set to "FAILED" or "KILLED".
Unix timestamp of when the run ended in milliseconds.
Run ID.
(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.