mlflow_search_registered_models: List registered models

View source: R/model-registry.R

mlflow_search_registered_modelsR Documentation

List registered models

Description

Retrieves a list of registered models.

Usage

mlflow_search_registered_models(
  filter = NULL,
  max_results = 100,
  order_by = list(),
  page_token = NULL,
  client = NULL
)

Arguments

filter

A filter expression used to identify specific registered models. The syntax is a subset of SQL which allows only ANDing together binary operations. Example: "name = 'my_model_name' and tag.key = 'value1'"

max_results

Maximum number of registered models to retrieve.

order_by

List of registered model properties to order by. Example: "name".

page_token

Pagination token to go to the next page based on a previous query.

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.


mlflow documentation built on Nov. 23, 2023, 9:13 a.m.