mlflow_set_model_version_tag {mlflow} | R Documentation |
Set Model version tag
Description
Set a tag for the model version. When stage is set, tag will be set for latest model version of the stage. Setting both version and stage parameter will result in error.
Usage
mlflow_set_model_version_tag(
name,
version = NULL,
key = NULL,
value = NULL,
stage = NULL,
client = NULL
)
Arguments
name |
Registered model name. |
version |
Registered model version. |
key |
Tag key to log. key is required. |
value |
Tag value to log. value is required. |
stage |
Registered model stage. |
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.19.0 Index]