Skip to contents

Logs a param used for a run. A param is a key-value pair (string key, string value). Examples include hyperparameters used for ML model training and constant dates and values used in an ETL pipeline. A param can be logged only once for a run.

Usage

log_experiment_param(client, key, value, run_id = NULL, run_uuid = NULL)

experimentsLogParam(client, key, value, run_id = NULL, run_uuid = NULL)

Arguments

client

Required. Instance of DatabricksClient()

key

Required. Name of the param.

value

Required. String value of the param being logged.

run_id

ID of the run under which to log the param.

run_uuid

Deprecated, use run_id instead. ID of the run under which to log the param.