mlflow (version 1.9.0)

mlflow_set_experiment_tag: Set Experiment Tag

Description

Sets a tag on an experiment with the specified ID. Tags are experiment metadata that can be updated.

Usage

mlflow_set_experiment_tag(key, value, experiment_id = NULL, client = NULL)

Arguments

key

Name of the tag. All storage backends are guaranteed to support key values up to 250 bytes in size. This field is required.

value

String value of the tag being logged. All storage backends are guaranteed to support key values up to 5000 bytes in size. This field is required.

experiment_id

ID of the experiment.

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.