mlflow (version 1.9.0)

mlflow_log_param: Log Parameter

Description

Logs a parameter for a run. Examples are params and hyperparams used for ML training, or constant dates and values used in an ETL pipeline. A param is a STRING key-value pair. For a run, a single parameter is allowed to be logged only once.

Usage

mlflow_log_param(key, value, run_id = NULL, client = NULL)

Arguments

key

Name of the parameter.

value

String value of the parameter.

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.