Learn R Programming

mlflow (version 0.7.0)

mlflow_set_tag: Set Tag

Description

Set a tag on a run. Tags are run metadata that can be updated during and after a run completes.

Usage

mlflow_set_tag(key, value)

Arguments

key

Name of the tag. Maximum size is 255 bytes. This field is required.

value

String value of the tag being logged. Maximum size is 500 bytes. This field is required.

Details

The fluent API family of functions operate with an implied MLflow client determined by the service set by `mlflow_set_tracking_uri()`. For operations involving a run it adopts the current active run, or, if one does not exist, starts one through the implied service.

See Also

Other Fluent API functions: mlflow_create_experiment, mlflow_end_run, mlflow_log_artifact, mlflow_log_metric, mlflow_log_param, mlflow_set_experiment, mlflow_start_run