Learn R Programming

mlflow (version 0.9.0.1)

mlflow_client_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_client_log_param(client, run_id, key, value)

Arguments

client

An `mlflow_client` object.

run_id

Run ID.

key

Name of the parameter.

value

String value of the parameter.

Details

The Tracking Client family of functions require an MLflow client to be specified explicitly. These functions allow for greater control of where the operations take place in terms of services and runs, but are more verbose compared to the Fluent API.