reate a new run within an experiment. A run is usually a single execution of a machine learning or data ETL pipeline.
mlflow_client_create_run(client, experiment_id, user_id = NULL,
run_name = NULL, source_type = NULL, source_name = NULL,
entry_point_name = NULL, start_time = NULL, source_version = NULL,
tags = NULL)
An `mlflow_client` object.
Unique identifier for the associated experiment.
User ID or LDAP for the user executing the run.
Human readable name for run.
Originating source for this run. One of Notebook, Job, Project, Local or Unknown.
String descriptor for source. For example, name or description of the notebook, or job name.
Name of the entry point for the run.
Unix timestamp of when the run started in milliseconds.
Git version of the source code used to create run.
Additional metadata for run in key-value pairs.
MLflow uses runs to track Param, Metric, and RunTag, associated with a single execution.
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.
Other Tracking client functions: mlflow_client_create_experiment
,
mlflow_client_delete_experiment
,
mlflow_client_delete_run
,
mlflow_client_download_artifacts
,
mlflow_client_get_experiment_by_name
,
mlflow_client_get_experiment
,
mlflow_client_get_run
,
mlflow_client_list_artifacts
,
mlflow_client_list_experiments
,
mlflow_client_log_artifact
,
mlflow_client_log_metric
,
mlflow_client_log_param
,
mlflow_client_restore_experiment
,
mlflow_client_restore_run
,
mlflow_client_set_tag
,
mlflow_client_set_terminated