View source: R/tracking-runs.R
mlflow_end_run | R Documentation |
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
)
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. |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.