View source: R/tracking-runs.R
mlflow_log_param | R Documentation |
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.
mlflow_log_param(key, value, run_id = NULL, client = NULL)
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. |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.