View source: R/model-registry.R
mlflow_set_model_version_tag | R Documentation |
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.
mlflow_set_model_version_tag(
name,
version = NULL,
key = NULL,
value = NULL,
stage = NULL,
client = NULL
)
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. |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.