mlflow_set_model_version_tag: Set Model version tag

View source: R/model-registry.R

mlflow_set_model_version_tagR 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.


mlflow documentation built on Nov. 23, 2023, 9:13 a.m.