mlflow_create_registered_model {mlflow} | R Documentation |
Creates a new registered model in the model registry
mlflow_create_registered_model(
name,
tags = NULL,
description = NULL,
client = NULL
)
name |
The name of the model to create. |
tags |
Additional metadata for the registered model (Optional). |
description |
Description for the registered model (Optional). |
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. |