Create a model version
mlflow_create_model_version(
name,
source,
run_id = NULL,
tags = NULL,
run_link = NULL,
description = NULL,
client = NULL
)
Register model under this name.
URI indicating the location of the model artifacts.
MLflow run ID for correlation, if `source` was generated by an experiment run in MLflow Tracking.
Additional metadata.
MLflow run link - This is the exact link of the run that generated this model version.
Description for model version.
(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.