mlflow_create_model_version {mlflow}R Documentation

Create a model version

Description

Create a model version

Usage

mlflow_create_model_version(
  name,
  source,
  run_id = NULL,
  tags = NULL,
  run_link = NULL,
  description = NULL,
  client = NULL
)

Arguments

name

Register model under this name.

source

URI indicating the location of the model artifacts.

run_id

MLflow run ID for correlation, if 'source' was generated by an experiment run in MLflow Tracking.

tags

Additional metadata.

run_link

MLflow run link - This is the exact link of the run that generated this model version.

description

Description for model version.

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.


[Package mlflow version 2.11.1 Index]