View source: R/tracking-runs.R
mlflow_set_tag | R Documentation |
Sets a tag on a run. Tags are run metadata that can be updated during a run and after a run completes.
mlflow_set_tag(key, value, run_id = NULL, client = NULL)
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. |
run_id |
Run ID. |
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.