mlflow_delete_tag {mlflow} | R Documentation |
Delete Tag
Description
Deletes a tag on a run. This is irreversible. Tags are run metadata that can be updated during a run and after a run completes.
Usage
mlflow_delete_tag(key, run_id = NULL, client = NULL)
Arguments
key |
Name of the tag. Maximum size is 255 bytes. This field is required. |
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. |
[Package mlflow version 2.14.1 Index]