Creates a New Run
Synopsis
This operator creates a new run on a mlflow server
Description
This operator creates a new run into an existing experiment. The experiment needs to be defined using the experiment_id parameter.
A A run is simply put a single execution of your training process and can contain performances, metrics and other parameters
This operator acts similary to mlflow.client.create_run() in python.
Input
con
Connection to a MLFlow Server
through
Through port to send data through
Output
exa
Table with the information on the generated run
run
A RunIOObject, which holds all the information on the given run and can be used to log things into the run.
through
Through port to send data through
Parameters
Experiment name
Name of the experiment to create the run in
Define run name
If set to true the user has to provide a name for the created run. If set to false a random name is used.
Run name
The name of the run. Only available if define run name is set to true.